From c86857ead8e89fbae965379e1482bdd6f2b0243b Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Mon, 12 Oct 2015 11:43:09 -0400 Subject: [PATCH] Fix password resets. --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 362e0b6..1f06dd4 100644 --- a/settings.py +++ b/settings.py @@ -49,8 +49,8 @@ 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.BCryptSHA256PasswordHasher', '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',