Fixed bug with params other than p0

p1 and upwards were not correctly extracted.
pull/168/head
Simon Willison 2017-11-24 13:55:00 -08:00
rodzic b450778391
commit ab32bd6427
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: FBB38AFE227189DB
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -315,7 +315,7 @@ async def favicon(request):
class DatabaseView(BaseView):
template = 'database.html'
re_named_parameter = re.compile(':([a-zA-Z0-0_]+)')
re_named_parameter = re.compile(':([a-zA-Z0-9_]+)')
async def data(self, request, name, hash):
if request.args.get('sql'):