summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/auth/forms.py2
1 files changed, 1 insertions, 1 deletions
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 = "<strong>%s</strong>" % ugettext("Invalid password format or unknown hashing algorithm.")
+ summary = "<strong>Invalid password format or unknown hashing algorithm.</strong>"
else:
summary = ""
for key, value in hasher.safe_summary(encoded).iteritems():