summaryrefslogtreecommitdiff
path: root/run_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_server.py')
-rw-r--r--run_server.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_server.py b/run_server.py
index 9d80e6c..5cff199 100644
--- a/run_server.py
+++ b/run_server.py
@@ -1,9 +1,10 @@
#!/usr/bin/python2
+"""used to run the webserver"""
import sys
sys.path.append("./lib")
from server import Server
server = Server()
if __name__ == "__main__":
- server.run_wsgi()
+ server.run_wsgi()