From 49cf7f4a5108431f4bcc4ea69c40a69e9379b3b5 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Fri, 11 Sep 2009 09:08:07 +0000 Subject: [PATCH] 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 --- django/forms/widgets.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 9bae8266eeb..b1d2cb7cdaa 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)