Commit 7bb2056d authored by Aurel's avatar Aurel

fix some variable


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@98 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 2db89587
...@@ -417,8 +417,8 @@ class ClientEventHandler(EventHandler): ...@@ -417,8 +417,8 @@ class ClientEventHandler(EventHandler):
# This can happen either when : # This can happen either when :
# - loading an object # - loading an object
# - asking for history # - asking for history
self.local_var.asked_object = -1 app.local_var.asked_object = -1
self.local_var.history = -1 app.local_var.history = -1
else: else:
self.handleUnexpectedPacket(conn, packet) self.handleUnexpectedPacket(conn, packet)
...@@ -426,7 +426,7 @@ class ClientEventHandler(EventHandler): ...@@ -426,7 +426,7 @@ class ClientEventHandler(EventHandler):
if isinstance(conn, ClientConnection): if isinstance(conn, ClientConnection):
app = self.app app = self.app
# This can happen when requiring txn informations # This can happen when requiring txn informations
self.local_var.txn_info = -1 app.local_var.txn_info = -1
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