aboutsummaryrefslogtreecommitdiffstats
path: root/Pubnub.py
diff options
context:
space:
mode:
Diffstat (limited to 'Pubnub.py')
-rw-r--r--Pubnub.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Pubnub.py b/Pubnub.py
index 9cd33af..ee9371a 100644
--- a/Pubnub.py
+++ b/Pubnub.py
@@ -873,13 +873,15 @@ class PubnubCoreAsync(PubnubBase):
if ch[1] in self.subscriptions:
chobj = self.subscriptions[ch[1]]
_invoke(chobj['callback'],
- self.decrypt(response_list[ch[0]]), chobj['name'])
+ self.decrypt(response_list[ch[0]]),
+ chobj['name'])
else:
response_list = response[0]
chobj = _get_channel()
for r in response_list:
if chobj:
- _invoke(chobj['callback'], self.decrypt(r), chobj['name'])
+ _invoke(chobj['callback'], self.decrypt(r),
+ chobj['name'])
_connect()