aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rw-r--r--runserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/runserver.py b/runserver.py
index cc99a3c7..92c02609 100644
--- a/runserver.py
+++ b/runserver.py
@@ -22,4 +22,5 @@
import conf
from pyaggr3g470r import app
-app.run(host=conf.WEBSERVER_HOST, port=conf.WEBSERVER_PORT, debug=conf.WEBSERVER_DEBUG)
+app.run(host=conf.WEBSERVER_HOST, port=conf.WEBSERVER_PORT,
+ debug=conf.WEBSERVER_DEBUG)
bgstack15