Skip to content
Snippets Groups Projects
Unverified Commit 889445a2 authored by Aarif's avatar Aarif Committed by GitHub
Browse files

Merge pull request #21790 from edx/BOM-741

BOM-741
parents 5597a86a eb694a71
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,9 @@
Forms for the password policy app.
"""
from __future__ import absolute_import
import six
from django.contrib import messages
from django.contrib.admin.forms import AdminAuthenticationForm
from django.forms import ValidationError
......@@ -25,9 +28,9 @@ class PasswordPolicyAwareAdminAuthForm(AdminAuthenticationForm):
password_policy_compliance.enforce_compliance_on_login(self.user_cache, cleaned_data['password'])
except password_policy_compliance.NonCompliantPasswordWarning as e:
# Allow login, but warn the user that they will be required to reset their password soon.
messages.warning(self.request, e.message)
messages.warning(self.request, six.text_type(e))
except password_policy_compliance.NonCompliantPasswordException as e:
# Prevent the login attempt.
raise ValidationError(e.message)
raise ValidationError(six.text_type(e))
return cleaned_data
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment