Ticket #11703: fix_rev11491.diff

File fix_rev11491.diff, 452 bytes (added by Guillermo Gutiérrez, 15 years ago)
  • ../django/forms/widgets.py

     
    139139            self.attrs = attrs.copy()
    140140        else:
    141141            self.attrs = {}
    142         super(Widget, self).__init__(attrs)
     142        super(Widget, self).__init__()
    143143
    144144    def __deepcopy__(self, memo):
    145145        obj = copy.copy(self)
Back to Top