Commit ae1b7e96 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Reverted the introduction of a translation string in r17775 as it happened...

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
parent b3d0d855
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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():