diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-04-18 17:25:40 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-04-18 17:28:31 +0200 |
commit | a82c8859bd4ceda956dd58e97a3c0e4fc4179229 (patch) | |
tree | d1bf16bb9ad133354a23301738993f765653f83f /install/django.wsgi.template | |
parent | e3a061f50b538e88884a0e89b99d40f6a0e193c3 (diff) | |
download | Ishtar-a82c8859bd4ceda956dd58e97a3c0e4fc4179229.tar.bz2 Ishtar-a82c8859bd4ceda956dd58e97a3c0e4fc4179229.zip |
Update installation script
Conflicts:
install/install.sh
Diffstat (limited to 'install/django.wsgi.template')
-rw-r--r-- | install/django.wsgi.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/django.wsgi.template b/install/django.wsgi.template index 54bf07351..a618f0a41 100644 --- a/install/django.wsgi.template +++ b/install/django.wsgi.template @@ -1,7 +1,7 @@ import os, sys MAIN_PATH = os.path.realpath(os.path.dirname(__file__)) + "/.." sys.path.append(MAIN_PATH) -os.environ['DJANGO_SETTINGS_MODULE'] = '#SHORT_NAME#.settings' +os.environ['DJANGO_SETTINGS_MODULE'] = '#APP_NAME#.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() |