Commit 49cf7f4a authored by Luke Plant's avatar Luke Plant
Browse files

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
parent c33355d8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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)