Commit 8451a462 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Fix r2596.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2601 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 609ef821
......@@ -351,9 +351,9 @@ class Application(object):
if self.event_queue is None:
return
neo.logging.info("Pending events:")
for event, _msg_id, _conn, args in self.event_queue:
neo.logging.info(' %r: %r:%r %r %r', event.__name__, _msg_id,
_conn, args)
for key, event, _msg_id, _conn, args in self.event_queue:
neo.logging.info(' %r:%r: %r:%r %r %r', key, event.__name__,
_msg_id, _conn, args)
def shutdown(self, erase=False):
"""Close all connections and exit"""
......
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