[CMF-checkins] CVS: Products/DCWorkflow - Scripts.py:1.8

Sidnei da Silva sidnei at awkly.org
Tue Jun 14 14:08:04 EDT 2005


Update of /cvs-repository/Products/DCWorkflow
In directory cvs.zope.org:/tmp/cvs-serv13536

Modified Files:
	Scripts.py 
Log Message:

- Forward-port Zope 2.8 compatibility fix


=== Products/DCWorkflow/Scripts.py 1.7 => 1.8 ===
--- Products/DCWorkflow/Scripts.py:1.7	Sun Apr  3 15:29:17 2005
+++ Products/DCWorkflow/Scripts.py	Tue Jun 14 14:08:03 2005
@@ -35,6 +35,7 @@
         '''
         '''
         kw['management_view'] = 'Scripts'
-        return Folder.manage_main(self, client, REQUEST, **kw)
+        m = Folder.manage_main.__of__(self)
+        return m(self, client, REQUEST, **kw)
 
 InitializeClass(Scripts)



More information about the CMF-checkins mailing list