apache: apache config file fixed to run on apache server
[unfold.git] / apache / unfold.wsgi
index 2fa8416..4af2e9f 100644 (file)
@@ -1,6 +1,10 @@
 import os
 import sys
 
+path = '/var/myslice-f4f'
+if path not in sys.path:
+    sys.path.append(path)
+
 os.environ['DJANGO_SETTINGS_MODULE'] = 'myslice.settings'
 
 import django.core.handlers.wsgi