pages
Simon Willison 2019-12-08 16:22:09 -08:00
rodzic c5e8cd84d3
commit 1d9efeef74
1 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -489,7 +489,10 @@ class Datasette:
if hasattr(asyncio, "all_tasks"):
tasks = asyncio.all_tasks()
d.update(
{"num_tasks": len(tasks), "tasks": [_cleaner_task_str(t) for t in tasks]}
{
"num_tasks": len(tasks),
"tasks": [_cleaner_task_str(t) for t in tasks],
}
)
return d
@ -666,9 +669,7 @@ class DatasetteRouter(AsgiRouter):
except TemplateNotFound:
template = None
if template:
await asgi_send_html(
send, await template.render_async(), status=200
)
await asgi_send_html(send, await template.render_async(), status=200)
else:
await super().handle_404(scope, receive, send)