Mercurial > templog
view web/templog.wsgi @ 103:ef59da811986
add debug url
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 02 Aug 2012 22:11:13 +0800 |
parents | 3cd1ca6d0489 |
children | 7f3fc0980df1 |
line wrap: on
line source
import os import sys # Change working directory so relative paths (and template lookup) work again thisdir = os.path.dirname(__file__) os.chdir(thisdir) # for some reason local imports don't work... sys.path.append(thisdir) import bottle import templog application = bottle.default_app()