Ticket #13431: unicode_lit.patch

File unicode_lit.patch, 500 bytes (added by gutworth, 14 years ago)
  • django/forms/widgets.py

     
    438438        options = self.render_options(choices, [value])
    439439        if options:
    440440            output.append(options)
    441         output.append('</select>')
     441        output.append(u'</select>')
    442442        return mark_safe(u'\n'.join(output))
    443443
    444444    def render_options(self, choices, selected_choices):
Back to Top