Changes between Version 21 and Version 22 of AuditTrail


Ignore:
Timestamp:
Jul 11, 2010, 2:42:27 PM (14 years ago)
Author:
casbon
Comment:

1.2 compatible AuditTrailManager init

Legend:

Unmodified
Added
Removed
Modified
  • AuditTrail

    v21 v22  
    259259    """Create an audit trail manager based on the current object"""
    260260    class AuditTrailManager(manager.__class__):
    261         def __init__(self):
     261        def __init__(self, *arg, **kw):
     262            super(AuditTrailManager, self).__init__(*arg, **kw)
    262263            self.model = manager.model
    263264    return AuditTrailManager()
Back to Top