summaryrefslogtreecommitdiff
path: root/bin/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/web.py')
-rw-r--r--bin/web.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/web.py b/bin/web.py
index c0e2f5d..c3975f3 100644
--- a/bin/web.py
+++ b/bin/web.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# coding: utf-8
import bottle
-from ebus import web
+from ebus import webapp
if __name__ == "__main__":
- bottle.run(web.app, host="0.0.0.0", port=8000, reloader=True)
+ bottle.run(webapp.app, host="0.0.0.0", port=8000, reloader=True)