Switch to unified view
a/webui-wsgi.py | b/webui-wsgi.py | ||
---|---|---|---|
1 | #!env python |
1 | #!/usr/bin/env python |
2 | import os |
2 | import os |
3 | import bottle |
3 | # change to webui's directory and set up |
4 | os.chdir(os.path.dirname(__file__)) |
||
4 | import webui |
5 | import webui |
5 | |||
6 | os.chdir(os.path.dirname(__file__)) |
||
7 | application = bottle.default_app() |
6 | application = webui.bottle.default_app()
|
8 | # vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et |
7 | # vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et |