diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2009-09-11 09:08:07 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2009-09-11 09:08:07 +0000 |
| commit | 49cf7f4a5108431f4bcc4ea69c40a69e9379b3b5 (patch) | |
| tree | d8d2402129369004d2eeea0b4b79c844484c771f /django/forms/widgets.py | |
| parent | c33355d86aaf96faba44febb02395d8d12c9cd5b (diff) | |
Fixed Widget.__init__() for Python 2.6 and greater. Refs #11703
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11496 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/forms/widgets.py')
| -rw-r--r-- | django/forms/widgets.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 9bae8266ee..b1d2cb7cda 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -139,7 +139,6 @@ class Widget(object): self.attrs = attrs.copy() else: self.attrs = {} - super(Widget, self).__init__(attrs) def __deepcopy__(self, memo): obj = copy.copy(self) |
