Commit 09336971 authored by Aurel's avatar Aurel

fix variable name


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@202 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent ae7a3d07
...@@ -459,7 +459,7 @@ class ClientEventHandler(EventHandler): ...@@ -459,7 +459,7 @@ class ClientEventHandler(EventHandler):
else: else:
self.handleUnexpectedPacket(conn, packet) self.handleUnexpectedPacket(conn, packet)
def handleAnswerTransactionInformation(self, conn, packet, tid, def handleAnswerTransactionInformation(self, conn, packet, tid,
user, desc, ext, oid_list): user, desc, ext, oid_list):
if isinstance(conn, MTClientConnection): if isinstance(conn, MTClientConnection):
app = self.app app = self.app
...@@ -478,7 +478,7 @@ class ClientEventHandler(EventHandler): ...@@ -478,7 +478,7 @@ class ClientEventHandler(EventHandler):
if isinstance(conn, MTClientConnection): if isinstance(conn, MTClientConnection):
app = self.app app = self.app
# history_list is a list of tuple (serial, size) # history_list is a list of tuple (serial, size)
self.history = oid, history_list app.local_var.history = oid, history_list
else: else:
self.handleUnexpectedPacket(conn, packet) self.handleUnexpectedPacket(conn, packet)
......
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