diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2018-12-24 09:52:24 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2018-12-24 09:52:24 +0100 |
commit | 51b97199270c0ae94e61d64b9bdf2b431f55c441 (patch) | |
tree | f7dfd30449b27591f835245853c7b99f558b6e2e /crocoite | |
parent | ba98bcd4a07c589722c6db103b363c8aa1d3561d (diff) | |
download | crocoite-51b97199270c0ae94e61d64b9bdf2b431f55c441.tar.gz crocoite-51b97199270c0ae94e61d64b9bdf2b431f55c441.tar.bz2 crocoite-51b97199270c0ae94e61d64b9bdf2b431f55c441.zip |
Drop deprecated debug parameter
Diffstat (limited to 'crocoite')
-rw-r--r-- | crocoite/test_browser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crocoite/test_browser.py b/crocoite/test_browser.py index 6015a2f..8008855 100644 --- a/crocoite/test_browser.py +++ b/crocoite/test_browser.py @@ -106,7 +106,7 @@ async def server (): """ Simple HTTP server for testing notifications """ import logging logging.basicConfig(level=logging.DEBUG) - app = web.Application(debug=True) + app = web.Application() for item in testItems: app.router.add_route ('*', item.url.path, itemToResponse (item)) runner = web.AppRunner(app) |