diff options
author | yvesf <yvesf-git@xapek.org> | 2011-07-17 15:00:26 +0200 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-07-17 15:00:26 +0200 |
commit | 647288db34eaedb9f1bb126d6714305d0ac50e67 (patch) | |
tree | df32e614aac343285b9d666bba126eda30e70489 /bin | |
parent | c5fb76f07ec013e90c2ff41b7439b21402002788 (diff) | |
download | ebus-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |