Mercurial > public > sg101
changeset 50:04dcbf008bcc
Fix path in wsgi file; disable the OFFLINE switch so we can start testing.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 21 Jun 2009 22:00:23 +0000 |
parents | e66e718e1e1e |
children | e5d078ebe870 |
files | gpp/apache/sg101.wsgi |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/gpp/apache/sg101.wsgi Sun Jun 21 21:41:41 2009 +0000 +++ b/gpp/apache/sg101.wsgi Sun Jun 21 22:00:23 2009 +0000 @@ -1,9 +1,9 @@ import os import sys -OFFLINE = True +OFFLINE = False -sys.path.append('/home/var/django-sites/sg101/django') +sys.path.append('/home/var/django-sites/sg101') sys.path.append('/home/var/django-sites/sg101/3rdparty') sys.path.append('/home/var/django-sites/sg101/sg101-trunk') sys.path.append('/home/var/django-sites/sg101/sg101-trunk/gpp')