Skip to content

Commit

Permalink
Fixed Widget.__init__() for Python 2.6 and greater. Refs #11703
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11496 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
spookylukey committed Sep 11, 2009
1 parent c33355d commit 49cf7f4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion django/forms/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ def __init__(self, attrs=None):
self.attrs = attrs.copy()
else:
self.attrs = {}
super(Widget, self).__init__(attrs)

def __deepcopy__(self, memo):
obj = copy.copy(self)
Expand Down

0 comments on commit 49cf7f4

Please sign in to comment.