summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2009-09-10 16:30:41 +0000
committerLuke Plant <L.Plant.98@cantab.net>2009-09-10 16:30:41 +0000
commitd18dace8ebe81e856e4a1e05c9d149a6c14aea5f (patch)
tree0a6c334bf3247a089fbde6bb5e313ab6cb5c4e28
parent49b9470dca446c5bee6518310a9739aa424edcd3 (diff)
Fixed #11703: Added missing Super calls to 2 widget classes.
Thanks Rupe git-svn-id: http://code.djangoproject.com/svn/django/trunk@11491 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/forms/widgets.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py
index cecafa880b..9bae8266ee 100644
--- a/django/forms/widgets.py
+++ b/django/forms/widgets.py
@@ -139,6 +139,7 @@ class Widget(object):
self.attrs = attrs.copy()
else:
self.attrs = {}
+ super(Widget, self).__init__(attrs)
def __deepcopy__(self, memo):
obj = copy.copy(self)
@@ -275,9 +276,10 @@ class FileInput(Input):
class Textarea(Widget):
def __init__(self, attrs=None):
# The 'rows' and 'cols' attributes are required for HTML correctness.
- self.attrs = {'cols': '40', 'rows': '10'}
+ default_attrs = {'cols': '40', 'rows': '10'}
if attrs:
- self.attrs.update(attrs)
+ default_attrs.update(attrs)
+ super(Textarea, self).__init__(default_attrs)
def render(self, name, value, attrs=None):
if value is None: value = ''