Index: django/newforms/forms.py
===================================================================
--- django/newforms/forms.py	(revision 4700)
+++ django/newforms/forms.py	(working copy)
@@ -126,7 +126,8 @@
                     help_text = help_text_html % field.help_text
                 else:
                     help_text = u''
-                output.append(normal_row % {'errors': bf_errors, 'label': label, 'field': unicode(bf), 'help_text': help_text})
+
+                output.append(normal_row % {'errors': unicode(bf_errors), 'label': unicode(label), 'field': unicode(bf), 'help_text': help_text})
         if top_errors:
             output.insert(0, error_row % top_errors)
         if hidden_fields: # Insert any hidden fields in the last row.
