diff options
author | Jayaram Pai | 2014-04-19 18:44:47 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-04-19 18:44:47 +0530 |
commit | 0cd3d58a11aaf2e5a4971bd500ea1d9ac922ddf4 (patch) | |
tree | 7ee0d2684633779c05cb19eb00b2e386fbb1a317 /forums | |
parent | 81626e2e824c421a4fe042501c46fcdb1361b972 (diff) | |
download | spoken-tutorial-forums-0cd3d58a11aaf2e5a4971bd500ea1d9ac922ddf4.tar.gz spoken-tutorial-forums-0cd3d58a11aaf2e5a4971bd500ea1d9ac922ddf4.tar.bz2 spoken-tutorial-forums-0cd3d58a11aaf2e5a4971bd500ea1d9ac922ddf4.zip |
enabled wsgi: activate
Diffstat (limited to 'forums')
-rw-r--r-- | forums/wsgi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forums/wsgi.py b/forums/wsgi.py index 3a52e8b..728eed4 100644 --- a/forums/wsgi.py +++ b/forums/wsgi.py @@ -24,8 +24,8 @@ sys.path.append('/Sites/venv/forums/') # os.environ["DJANGO_SETTINGS_MODULE"] = "forums.settings" os.environ["DJANGO_SETTINGS_MODULE"] = "forums.settings" -#activate_this = '/Sites/venv/bin/activate_this.py' -#execfile(activate_this, dict(__file__=activate_this)) +activate_this = '/Sites/venv/bin/activate_this.py' +execfile(activate_this, dict(__file__=activate_this)) # This application object is used by any WSGI server configured to use this # file. This includes Django's development server, if the WSGI_APPLICATION |