summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authoryvesf <yvesf-git@xapek.org>2011-07-17 15:00:26 +0200
committeryvesf <yvesf-git@xapek.org>2011-07-17 15:00:26 +0200
commit647288db34eaedb9f1bb126d6714305d0ac50e67 (patch)
treedf32e614aac343285b9d666bba126eda30e70489 /bin
parentc5fb76f07ec013e90c2ff41b7439b21402002788 (diff)
downloadebus-alt-647288db34eaedb9f1bb126d6714305d0ac50e67.tar.gz
ebus-alt-647288db34eaedb9f1bb126d6714305d0ac50e67.zip
cache und startdatei
* die anwendung umgestellt das sie den cache benutzt * web.py umgestellt dass sie das ebus.webapp modul startet
Diffstat (limited to 'bin')
-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)