[Checkins] SVN: Products.GenericSetup/trunk/Products/GenericSetup/registry.py The registry itself is not a persistance aware. so set _p_changed on the acquisition parent: the GS tool

Wichert Akkerman wichert at wiggy.net
Wed Jan 9 05:13:58 EST 2008


Log message for revision 82769:
  The registry itself is not a persistance aware. so set _p_changed on the acquisition parent: the GS tool

Changed:
  U   Products.GenericSetup/trunk/Products/GenericSetup/registry.py

-=-
Modified: Products.GenericSetup/trunk/Products/GenericSetup/registry.py
===================================================================
--- Products.GenericSetup/trunk/Products/GenericSetup/registry.py	2008-01-09 09:58:06 UTC (rev 82768)
+++ Products.GenericSetup/trunk/Products/GenericSetup/registry.py	2008-01-09 10:13:58 UTC (rev 82769)
@@ -300,7 +300,7 @@
     security.declarePrivate( 'unregisterStep' )
     def unregisterStep( self, id ):
         del self._registered[id]
-        self._p_changed = True
+        self.aq_parent._p_changed = True
 
     security.declarePrivate( 'clear' )
     def clear( self ):



More information about the Checkins mailing list