Merge pull request #24 from Olegt0rr/patch-2

BugFix: web.run_app doesn't wait for loop kwarg
This commit is contained in:
Alex Root Junior 2018-03-19 01:13:50 +02:00 committed by GitHub
commit 4e7ab9c16d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,5 +87,5 @@ def start_webhook(dispatcher, webhook_path, *, loop=None, skip_updates=None,
app.on_startup.append(_wh_startup)
app.on_shutdown.append(_wh_shutdown)
web.run_app(app, loop=loop, **kwargs)
web.run_app(app, **kwargs)
return app