Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/env/python
- import os
- import sys
- # activate virtualenv
- activate_this = os.path.expanduser("/home/cristian/.virtualenvs/wtosm/bin/activate_this.py")
- execfile(activate_this, dict(__file__=activate_this))
- # Change working directory so relative paths (and template lookup) work again
- basedir = os.path.dirname('/home/cristian/Documenti/Lavoro/FBK/wtosm/dev/wikipedia-tags-in-osm/app/')
- sys.path.append(basedir)
- os.chdir(basedir)
- #from wiki import app
- from demo import app
- application = app
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement