[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Workflow/tests - DummyProcessInstance.py:1.1.2.2
Grégoire Weber
zope@i-con.ch
Fri, 6 Dec 2002 07:42:18 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow/tests
In directory cvs.zope.org:/tmp/cvs-serv28225/tests
Modified Files:
Tag: sprintathon-wf-branch
DummyProcessInstance.py
Log Message:
removed self in super(...).__init_(self)
=== Zope3/lib/python/Zope/App/Workflow/tests/DummyProcessInstance.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/lib/python/Zope/App/Workflow/tests/DummyProcessInstance.py:1.1.2.1 Thu Dec 5 11:44:39 2002
+++ Zope3/lib/python/Zope/App/Workflow/tests/DummyProcessInstance.py Fri Dec 6 07:42:17 2002
@@ -23,7 +23,7 @@
status = None
def __init__(self, processDefinition):
- super(DummyProcessInstance, self).__init__(self)
+ super(DummyProcessInstance, self).__init__()
self.__process_definition = processDefinition
############################################################