diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-10 10:34:00 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-10 10:34:00 +0100 |
commit | 677304ba3ecbd204fa2726e6820de84ad09bd868 (patch) | |
tree | bd19fbf2f1a0cddad1980fe15cf4c228867c5d69 /runserver.py | |
parent | Updated README. (diff) | |
download | newspipe-677304ba3ecbd204fa2726e6820de84ad09bd868.tar.gz newspipe-677304ba3ecbd204fa2726e6820de84ad09bd868.tar.bz2 newspipe-677304ba3ecbd204fa2726e6820de84ad09bd868.zip |
Added a tiny portion of black magic.
Diffstat (limited to 'runserver.py')
-rwxr-xr-x | runserver.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runserver.py b/runserver.py index 20c712a4..6844aa85 100755 --- a/runserver.py +++ b/runserver.py @@ -62,7 +62,7 @@ with application.app_context(): if __name__ == "__main__": application.run( - host=application.config['HOST'], - port=application.config['PORT'], - debug=application.config['DEBUG'] + host=application.config["HOST"], + port=application.config["PORT"], + debug=application.config["DEBUG"], ) |