diff options
| author | Devendra | 2014-05-07 13:01:21 +0530 | 
|---|---|---|
| committer | Devendra | 2014-05-07 13:01:21 +0530 | 
| commit | 4ab1fa41e1a10efc88909bceb78222ffb406145a (patch) | |
| tree | fc859edc2d48909bbd7b9393f5ca7e1be4082716 /Pubnub.py | |
| parent | 1b49e712e12ba833f460324b95969b162d464edf (diff) | |
| download | pubnub-python-4ab1fa41e1a10efc88909bceb78222ffb406145a.tar.bz2 | |
pep 8 compliance
Diffstat (limited to 'Pubnub.py')
| -rw-r--r-- | Pubnub.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| @@ -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() | 
