Ticket #4403: unicode-newforms-path.diff

File unicode-newforms-path.diff, 794 bytes (added by hidded <me@…>, 17 years ago)
  • usr/lib/python2.4/site-packages/django/newforms/forms.py

     
    123123                hidden_fields.append(unicode(bf))
    124124            else:
    125125                if errors_on_separate_row and bf_errors:
    126                     output.append(error_row % force_unicode(bf_errors))
     126                    output.append(error_row % bf_errors) # output.append(error_row % force_unicode(bf_errors))
    127127                if bf.label:
    128128                    label = escape(force_unicode(bf.label))
    129129                    # Only add a colon if the label does not end in punctuation.
Back to Top