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

Modified Files:
      Tag: CMF-1_4-branch
        Scripts.py 
Log Message:

- Need to wrap w/ aq wrapper on Zope 2.8


=== Products/DCWorkflow/Scripts.py 1.3.20.2 => 1.3.20.3 ===
--- Products/DCWorkflow/Scripts.py:1.3.20.2     Wed Mar 16 12:57:54 2005
+++ Products/DCWorkflow/Scripts.py      Mon Jun 13 22:05:12 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)
 
 Globals.InitializeClass(Scripts)

_______________________________________________
CMF-checkins mailing list
[email protected]
http://mail.zope.org/mailman/listinfo/cmf-checkins

Reply via email to