[CMF-checkins] CVS: Products/CMFCore - ActionProviderBase.py:1.26
Grégoire Weber
zope.org at incept.ch
Wed Jun 30 17:57:47 EDT 2004
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv7618
Modified Files:
ActionProviderBase.py
Log Message:
- assigning a method from a different class must be done using .im_func
=== Products/CMFCore/ActionProviderBase.py 1.25 => 1.26 ===
--- Products/CMFCore/ActionProviderBase.py:1.25 Wed Jun 30 11:40:17 2004
+++ Products/CMFCore/ActionProviderBase.py Wed Jun 30 17:57:46 2004
@@ -388,7 +388,7 @@
return self._actions or ()
security.declarePrivate('getActionObject')
- getActionObject = ActionProviderBase.getActionObject
+ getActionObject = ActionProviderBase.getActionObject.im_func
security.declarePublic('listActionInfos')
def listActionInfos(self, action_chain=None, object=None,
More information about the CMF-checkins
mailing list