summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-03-23 02:31:29 +0000
committerJannis Leidel <jannis@leidel.info>2012-03-23 02:31:29 +0000
commitae1b7e9699a7ff2e5359fb414d235ac04a631abb (patch)
treec0b86ed606cbe7f8c4c6fa469bb8db6934a82678
parentb3d0d8552a659137e8b5d6d5c056f757c50ced44 (diff)
Reverted the introduction of a translation string in r17775 as it happened after string freeze. Refs #17944.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17779 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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():