[Checkins] SVN: Products.GenericSetup/trunk/Products/GenericSetup/registry.py We need to tickle _p_changed when we modify _registered since that is a pure python dict

Wichert Akkerman wichert at wiggy.net
Wed Jan 9 04:58:07 EST 2008


Log message for revision 82768:
  We need to tickle _p_changed when we modify _registered since that is a pure python dict

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 08:42:54 UTC (rev 82767)
+++ Products.GenericSetup/trunk/Products/GenericSetup/registry.py	2008-01-09 09:58:06 UTC (rev 82768)
@@ -300,6 +300,7 @@
     security.declarePrivate( 'unregisterStep' )
     def unregisterStep( self, id ):
         del self._registered[id]
+        self._p_changed = True
 
     security.declarePrivate( 'clear' )
     def clear( self ):



More information about the Checkins mailing list