From 9f76d0d351953b513e9cd4e2fbd7690077a65fae Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 27 Feb 2014 19:36:44 +0100 Subject: [PATCH] Fixed #22136 -- Updated comment for Textarea widget Thanks Aymeric Augustin for the suggestion. --- django/forms/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/widgets.py b/django/forms/widgets.py index aeb674d013..5c50ca049f 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -401,7 +401,7 @@ class ClearableFileInput(FileInput): class Textarea(Widget): def __init__(self, attrs=None): - # The 'rows' and 'cols' attributes are required for HTML correctness. + # Use slightly better defaults than HTML's 20x2 box default_attrs = {'cols': '40', 'rows': '10'} if attrs: default_attrs.update(attrs)