mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed bug with params other than p0
p1 and upwards were not correctly extracted.
This commit is contained in:
parent
b450778391
commit
ab32bd6427
1 changed files with 1 additions and 1 deletions
|
|
@ -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'):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue