From 9730a520a325e702fa2d59ccfe939262775a64c2 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Mon, 12 Oct 2015 11:44:22 -0400 Subject: [PATCH] Rollback. --- settings.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/settings.py b/settings.py index 1f06dd4..70b4ed6 100644 --- a/settings.py +++ b/settings.py @@ -48,15 +48,6 @@ MANAGERS = ADMINS MEDIA_ROOT = os.path.join(BASE_PATH, 'media/uploads') MEDIA_URL = '/media/uploads/' MESSAGE_STORAGE = 'django.contrib.messages.storage.cookie.CookieStorage' -PASSWORD_HASHERS = ( - 'django.contrib.auth.hashers.BCryptPasswordHasher', - 'django.contrib.auth.hashers.BCryptSHA256PasswordHasher', - 'django.contrib.auth.hashers.PBKDF2PasswordHasher', - 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher', - 'django.contrib.auth.hashers.SHA1PasswordHasher', - 'django.contrib.auth.hashers.MD5PasswordHasher', - 'django.contrib.auth.hashers.CryptPasswordHasher', -) POSTMARK_API_KEY = os.environ.get('POSTMARK_API_KEY', '') PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) RAVEN_CONFIG = {'dsn': os.environ.get('RAVEN_CONFIG_DSN', '')} @@ -97,6 +88,7 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.staticfiles', + 'django_bcrypt', 'gunicorn', 'haystack', 'markdown_deux',