Commit 2ebf7fb2 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #13431 -- Corrected a unicode literal in select widgets. Thanks to gutworth for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13036 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent b647e22b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -438,7 +438,7 @@ class Select(Widget):
        options = self.render_options(choices, [value])
        if options:
            output.append(options)
        output.append('</select>')
        output.append(u'</select>')
        return mark_safe(u'\n'.join(output))

    def render_options(self, choices, selected_choices):