Changes between Version 7 and Version 8 of NewManipulators


Ignore:
Timestamp:
Aug 21, 2006, 5:51:12 PM (18 years ago)
Author:
brantley
Comment:

Fixed an oversight in the fixing of the last oversight.

Legend:

Unmodified
Added
Removed
Modified
  • NewManipulators

    v7 v8  
    128128            raise self.form
    129129        self.request = request
    130         self.data = copy_dict(data)
     130        self.data = copy_dict(request.POST) # copy_dict == lambda m: dict((k, v) for k, v in m.items())
    131131        self.errors = {}
    132132        self._convert()
Back to Top