diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2010-02-26 16:40:37 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2010-02-26 16:40:37 +0000 |
| commit | 14fbee6958e88b8bdee6bee58b7db1cc3f44903c (patch) | |
| tree | 24ad089c301b287340f336c5eed3e9bd1a2ff5e3 /tests/regressiontests/forms | |
| parent | 121188e254c41641f3ee16b767ef456e87feff7f (diff) | |
[1.1.X] Added force_unicode to a test (needed for Python 2.3 compatibility).
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12607 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/forms')
| -rw-r--r-- | tests/regressiontests/forms/error_messages.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/forms/error_messages.py b/tests/regressiontests/forms/error_messages.py index b7224dbde0..b102448cb9 100644 --- a/tests/regressiontests/forms/error_messages.py +++ b/tests/regressiontests/forms/error_messages.py @@ -362,6 +362,7 @@ ValidationError: [u'4 IS INVALID CHOICE'] # Subclassing ErrorList ####################################################### >>> from django.utils.safestring import mark_safe +>>> from django.utils.encoding import force_unicode >>> >>> class TestForm(Form): ... first_name = CharField() @@ -377,7 +378,7 @@ ValidationError: [u'4 IS INVALID CHOICE'] ... def as_divs(self): ... if not self: return u'' ... 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. |
