diff --git a/dpaste/settings/base.py b/dpaste/settings/base.py index 86a32f9..3bbcabf 100644 --- a/dpaste/settings/base.py +++ b/dpaste/settings/base.py @@ -37,6 +37,9 @@ DEBUG = False TIME_ZONE = 'UTC' SITE_ID = 1 +# Make this unique, and don't share it with anybody. +SECRET_KEY = '' + ALLOWED_HOSTS = ( 'dpaste.de', 'www.dpaste.de', @@ -45,7 +48,6 @@ ALLOWED_HOSTS = ( '127.0.0.1', ) -# Make this unique, and don't share it with anybody. SECRET_KEY = 'CHANGE_ME' #============================================================================== @@ -112,8 +114,8 @@ TEMPLATES = [ ] INSTALLED_APPS = ( - 'django.contrib.sessions', 'django.contrib.staticfiles', + 'django.contrib.sessions', 'dpaste', )