Ticket #13431: unicode_lit.patch
File unicode_lit.patch, 500 bytes (added by , 15 years ago) |
---|
-
django/forms/widgets.py
438 438 options = self.render_options(choices, [value]) 439 439 if options: 440 440 output.append(options) 441 output.append( '</select>')441 output.append(u'</select>') 442 442 return mark_safe(u'\n'.join(output)) 443 443 444 444 def render_options(self, choices, selected_choices):