From d0fc11769390660ee30aa3aafa5376703452af38 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 23 Jun 2019 16:32:06 -0700 Subject: [PATCH] Removed rogue debug print --- datasette/utils/asgi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/datasette/utils/asgi.py b/datasette/utils/asgi.py index 56a7a79a..6e005ab3 100644 --- a/datasette/utils/asgi.py +++ b/datasette/utils/asgi.py @@ -57,7 +57,6 @@ class AsgiRouter: class AsgiLifespan: def __init__(self, app, on_startup=None, on_shutdown=None): - print("Wrapping {}".format(app)) self.app = app on_startup = on_startup or [] on_shutdown = on_shutdown or []