From 3e2fd2e7e14f16a21928795bba91b5d1e87af3b3 Mon Sep 17 00:00:00 2001 From: Jayaram Pai Date: Sun, 20 Apr 2014 16:31:03 +0530 Subject: uncommented activate in forums/wsgi.py --- forums/wsgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'forums') diff --git a/forums/wsgi.py b/forums/wsgi.py index 3901802..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 -- cgit