diff options
author | 2019-04-05 18:24:32 +0100 | |
---|---|---|
committer | 2019-04-05 18:24:32 +0100 | |
commit | ab8b798547e82ca79882ba28b1920077c803425f (patch) | |
tree | b28a9005d05dfd2c9da62351671bf2aa6e37f7dc /pydis_site/wsgi.py | |
parent | [#158 #160] Automatically run collectstatic in containers/setup script (diff) |
pysite -> pydis_site
Diffstat (limited to '')
-rw-r--r-- | pydis_site/wsgi.py (renamed from pysite/wsgi.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pysite/wsgi.py b/pydis_site/wsgi.py index 0a7ca6bd..853e56f1 100644 --- a/pysite/wsgi.py +++ b/pydis_site/wsgi.py @@ -1,5 +1,5 @@ """ -WSGI config for pysite project. +WSGI config for pydis_site project. It exposes the WSGI callable as a module-level variable named ``application``. @@ -11,6 +11,6 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pysite.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'pydis_site.settings') application = get_wsgi_application() |