diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-01-31 20:17:44 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-01-31 20:17:44 (GMT) |
commit | 30f04220ebceb54279ad81c39c4c4cfffc5d96a4 (patch) | |
tree | 05e7f83e4b8e19bdbb1bc4c92c5d608193cbfe76 | |
parent | c95ec9e6bea9e076bda3ae66c4b604f399f5ec86 (diff) |
added project path to wsgi python path
-rw-r--r-- | helsinki/wsgi.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helsinki/wsgi.py b/helsinki/wsgi.py index 3d00c6a..36d57d6 100644 --- a/helsinki/wsgi.py +++ b/helsinki/wsgi.py @@ -13,7 +13,9 @@ middleware here, or combine a Django application with an application of another framework. """ -import os +import os, sys + +sys.path.append('/var/www/pv/helsinki') os.environ.setdefault("DJANGO_SETTINGS_MODULE", "helsinki.settings") |