diff options
author | Trupti Rajesh Kini | 2016-11-16 12:01:57 +0530 |
---|---|---|
committer | GitHub | 2016-11-16 12:01:57 +0530 |
commit | 88fe6f44af6bc2595039e31b4604574c7f8affcc (patch) | |
tree | bff20fbeeb35e06c661bfa75287f6dc477e5fafc /PythonTBC/settings.py | |
parent | 861dfa4142073b0ce4c03804d1e8d7da23b797a2 (diff) | |
download | Python-TBC-Interface-88fe6f44af6bc2595039e31b4604574c7f8affcc.tar.gz Python-TBC-Interface-88fe6f44af6bc2595039e31b4604574c7f8affcc.tar.bz2 Python-TBC-Interface-88fe6f44af6bc2595039e31b4604574c7f8affcc.zip |
Set debug false
Diffstat (limited to 'PythonTBC/settings.py')
-rw-r--r-- | PythonTBC/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 46131a9..dbec227 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -3,7 +3,7 @@ from os.path import * from .local import * -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG @@ -29,7 +29,7 @@ DATABASES = { # Hosts/domain names that are valid for this site; required if DEBUG is False # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ["localhost"] # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |