From 647288db34eaedb9f1bb126d6714305d0ac50e67 Mon Sep 17 00:00:00 2001 From: yvesf Date: Sun, 17 Jul 2011 15:00:26 +0200 Subject: cache und startdatei * die anwendung umgestellt das sie den cache benutzt * web.py umgestellt dass sie das ebus.webapp modul startet --- bin/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/web.py') 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) -- cgit v1.2.1