diff bns_website/apache/bns.wsgi @ 26:6f68f6800843

For #5, make some tweaks to the files to prepare for production hosting.
author Brian Neal <bgneal@gmail.com>
date Tue, 01 Nov 2011 19:17:07 -0500
parents ef4155f8c234
children a5e8741452a3
line wrap: on
line diff
--- a/bns_website/apache/bns.wsgi	Tue Nov 01 18:22:34 2011 -0500
+++ b/bns_website/apache/bns.wsgi	Tue Nov 01 19:17:07 2011 -0500
@@ -5,11 +5,11 @@
 
 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')
 
-sys.path.extend([project, website, third_party_apps])
+sys.path.extend([repo, website])
 
 os.environ['PYTHON_EGG_CACHE'] = eggs