Commit 62e025e3 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix first parameter of "super" function. Found by pylint.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@964 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 76a10f89
......@@ -564,13 +564,13 @@ class MTServerConnection(ServerConnection):
@lockCheckWrapper
def notify(self, *args, **kw):
return super(MTClientConnection, self).notify(*args, **kw)
return super(MTServerConnection, self).notify(*args, **kw)
@lockCheckWrapper
def ask(self, *args, **kw):
return super(MTClientConnection, self).ask(*args, **kw)
return super(MTServerConnection, self).ask(*args, **kw)
@lockCheckWrapper
def answer(self, *args, **kw):
return super(MTClientConnection, self).answer(*args, **kw)
return super(MTServerConnection, self).answer(*args, **kw)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment