From e48201ddd1492042183bca104bff77902063d0fc Mon Sep 17 00:00:00 2001 From: Julien Muchembled Date: Mon, 9 Jan 2012 15:52:09 +0100 Subject: [PATCH] client: fix passing of data to response handler through Connection.ask This is another fix to commit 4720ba3319831190ad9ebf2a6283496e092f4370. --- neo/client/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/client/app.py b/neo/client/app.py index 9e7af0f3..d5935368 100644 --- a/neo/client/app.py +++ b/neo/client/app.py @@ -238,7 +238,7 @@ class Application(object): _handlePacket(qconn, qpacket, kw, handler) break if not is_forgotten and qpacket is not None: - _handlePacket(qconn, qpacket) + _handlePacket(qconn, qpacket, kw) return self.getHandlerData() @profiler_decorator -- 2.25.1