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
This commit is contained in:
Jannis Leidel 2012-03-23 02:31:29 +00:00
parent b3d0d8552a
commit ae1b7e9699
1 changed files with 1 additions and 1 deletions

View File

@ -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():