diff bns_website/apache/bns.wsgi @ 39:b9d6f6d930a9

Merged Chris and Brian's changes with mine.
author Bob Mourlam <bob.mourlam@gmail.com>
date Sun, 06 Nov 2011 20:28:25 -0600
parents a5e8741452a3
children f00199f1524c
line wrap: on
line diff
--- a/bns_website/apache/bns.wsgi	Sun Nov 06 20:22:40 2011 -0600
+++ b/bns_website/apache/bns.wsgi	Sun Nov 06 20:28:25 2011 -0600
@@ -5,11 +5,12 @@
 
 here = os.path.dirname(__file__)
 website = os.path.dirname(here)
-project = os.path.dirname(website)
-third_party_apps = os.path.join(project, '3rdparty')
+repo = os.path.dirname(website)
+project = os.path.dirname(repo)
 eggs = os.path.join(project, 'eggs')
+django = os.path.join(project, 'django')
 
-sys.path.extend([project, website, third_party_apps])
+sys.path.extend([repo, website, django])
 
 os.environ['PYTHON_EGG_CACHE'] = eggs