diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 738da20d1c..c9d947bbce 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -281,7 +281,6 @@ class Textarea(Widget): def render(self, name, value, attrs=None): if value is None: value = '' - value = force_unicode(value) final_attrs = self.build_attrs(attrs, name=name) return mark_safe(u'%s' % (flatatt(final_attrs), conditional_escape(force_unicode(value))))