From ae1b7e9699a7ff2e5359fb414d235ac04a631abb Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 23 Mar 2012 02:31:29 +0000 Subject: [PATCH] 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 --- django/contrib/auth/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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():