aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'runserver.py')
-rw-r--r--runserver.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/runserver.py b/runserver.py
index b9a10dd7..1e8de552 100644
--- a/runserver.py
+++ b/runserver.py
@@ -4,5 +4,4 @@
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