Remove unnecessary changes

This commit is contained in:
Linmao Song 2018-01-26 16:50:17 +00:00
parent f03f5181e9
commit bd80386b5e

View file

@ -37,6 +37,9 @@ DEBUG = False
TIME_ZONE = 'UTC' TIME_ZONE = 'UTC'
SITE_ID = 1 SITE_ID = 1
# Make this unique, and don't share it with anybody.
SECRET_KEY = ''
ALLOWED_HOSTS = ( ALLOWED_HOSTS = (
'dpaste.de', 'dpaste.de',
'www.dpaste.de', 'www.dpaste.de',
@ -45,7 +48,6 @@ ALLOWED_HOSTS = (
'127.0.0.1', '127.0.0.1',
) )
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'CHANGE_ME' SECRET_KEY = 'CHANGE_ME'
#============================================================================== #==============================================================================
@ -112,8 +114,8 @@ TEMPLATES = [
] ]
INSTALLED_APPS = ( INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'django.contrib.sessions',
'dpaste', 'dpaste',
) )