summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/forms/widgets.py2
1 files changed, 1 insertions, 1 deletions
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)