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
This commit is contained in:
Luke Plant 2009-09-11 09:08:07 +00:00
parent c33355d86a
commit 49cf7f4a51
1 changed files with 0 additions and 1 deletions

View File

@ -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)