Mercurial > templog
comparison web/templog.wsgi @ 391:5026780c2dc7
- Fix HTTPError
- Add wsgi script
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 11 Jul 2012 23:42:24 +0800 |
parents | |
children | 7f3fc0980df1 |
comparison
equal
deleted
inserted
replaced
390:c0ffbfaac1c7 | 391:5026780c2dc7 |
---|---|
1 import os | |
2 import sys | |
3 # Change working directory so relative paths (and template lookup) work again | |
4 thisdir = os.path.dirname(__file__) | |
5 os.chdir(thisdir) | |
6 | |
7 # for some reason local imports don't work... | |
8 sys.path.append(thisdir) | |
9 | |
10 import bottle | |
11 import templog | |
12 application = bottle.default_app() |