Show
Ignore:
Timestamp:
09/07/07 12:21:38 (6 years ago)
Author:
ged
Message:

made encrypted extension work with both version 0.3 and 0.4 of SA

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/ext/encrypted.py

    r179 r201  
    7070                return EXT_PASS 
    7171             
    72             def populate_instance(self, mapper, selectcontext, row, instance, identitykey, isnew): 
    73                 mapper.populate_instance(selectcontext, instance, row, identitykey, isnew) 
     72            def populate_instance(self, mapper, selectcontext, row, instance, *args, **kwargs): 
     73                mapper.populate_instance(selectcontext, instance, row, *args, **kwargs) 
    7474                perform_decryption(instance) 
    7575                return True