[Checkins] SVN: Products.PluggableAuthService/branches/1.5/Products/PluggableAuthService/plugins/BasePlugin.py Merge c77631 here as well

Wichert Akkerman wichert at wiggy.net
Mon Nov 12 16:04:48 EST 2007


Log message for revision 81792:
  Merge c77631 here as well

Changed:
  U   Products.PluggableAuthService/branches/1.5/Products/PluggableAuthService/plugins/BasePlugin.py

-=-
Modified: Products.PluggableAuthService/branches/1.5/Products/PluggableAuthService/plugins/BasePlugin.py
===================================================================
--- Products.PluggableAuthService/branches/1.5/Products/PluggableAuthService/plugins/BasePlugin.py	2007-11-12 20:33:05 UTC (rev 81791)
+++ Products.PluggableAuthService/branches/1.5/Products/PluggableAuthService/plugins/BasePlugin.py	2007-11-12 21:04:47 UTC (rev 81792)
@@ -70,8 +70,8 @@
 
     security.declareProtected( ManageUsers, 'testImplements' )
     def testImplements( self, interface ):
-        """ Can't access Interface.isImplementedBy() directly in ZPT. """
-        return interface.isImplementedBy( self )
+        """ Can't access Interface.providedBy() directly in ZPT. """
+        return interface.providedBy( self )
 
     security.declareProtected( ManageUsers, 'manage_activateInterfaces' )
     def manage_activateInterfaces( self, interfaces, RESPONSE=None ):



More information about the Checkins mailing list