Author: jezdez
Date: 2012-03-22 19:31:29 -0700 (Thu, 22 Mar 2012)
New Revision: 17779

Modified:
   django/trunk/django/contrib/auth/forms.py
Log:
Reverted the introduction of a translation string in r17775 as it happened 
after string freeze. Refs #17944.

Modified: django/trunk/django/contrib/auth/forms.py
===================================================================
--- django/trunk/django/contrib/auth/forms.py   2012-03-23 02:31:12 UTC (rev 
17778)
+++ django/trunk/django/contrib/auth/forms.py   2012-03-23 02:31:29 UTC (rev 
17779)
@@ -36,7 +36,7 @@
         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():

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to