1
0

fixes, resend_subscriptions

This commit is contained in:
thomasv
2013-09-10 19:59:58 +02:00
parent 79645e9b37
commit 77871b97af
4 changed files with 26 additions and 9 deletions

View File

@@ -129,7 +129,7 @@ class Interface(threading.Thread):
with self.lock:
method, params, channel = self.unanswered_requests.pop(msg_id)
response_queue = self.responses[channel]
response_queue.put({'method':method, 'params':params, 'error':error, 'id':msg_id})
response_queue.put((self,{'method':method, 'params':params, 'error':error, 'id':msg_id}))
return