diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index a7278be6eb..f0ef124b20 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -36,7 +36,7 @@ class ReadOnlyPasswordHashWidget(forms.Widget): try: hasher = get_hasher(algorithm) except ValueError: - summary = "%s" % ugettext("Invalid password format or unknown hashing algorithm.") + summary = "Invalid password format or unknown hashing algorithm." else: summary = "" for key, value in hasher.safe_summary(encoded).iteritems():