Skip to content

Commit

Permalink
[1.1.X] Added force_unicode to a test (needed for Python 2.3 compatib…
Browse files Browse the repository at this point in the history
…ility).

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12607 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
kmtracey committed Feb 26, 2010
1 parent 121188e commit 14fbee6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/regressiontests/forms/error_messages.py
Expand Up @@ -362,6 +362,7 @@
# Subclassing ErrorList ####################################################### # Subclassing ErrorList #######################################################
>>> from django.utils.safestring import mark_safe >>> from django.utils.safestring import mark_safe
>>> from django.utils.encoding import force_unicode
>>> >>>
>>> class TestForm(Form): >>> class TestForm(Form):
... first_name = CharField() ... first_name = CharField()
Expand All @@ -377,7 +378,7 @@
... def as_divs(self): ... def as_divs(self):
... if not self: return u'' ... if not self: return u''
... return mark_safe(u'<div class="error">%s</div>' ... return mark_safe(u'<div class="error">%s</div>'
... % ''.join([u'<p>%s</p>' % e for e in self])) ... % ''.join([u'<p>%s</p>' % force_unicode(e) for e in self]))
... ...
This form should print errors the default way. This form should print errors the default way.
Expand Down

0 comments on commit 14fbee6

Please sign in to comment.