diff options
| author | Devendra | 2014-06-15 10:23:16 +0530 | 
|---|---|---|
| committer | Devendra | 2014-06-15 10:23:16 +0530 | 
| commit | 75033e11a429b52b0366d63bdd8f81b795a7145d (patch) | |
| tree | 7e7871fd7256c6fa9c835c996c0cee113a4eae6a /Pubnub.py | |
| parent | 646fdda7abbd997925e83a497ed70ca27fb64654 (diff) | |
| download | pubnub-python-75033e11a429b52b0366d63bdd8f81b795a7145d.tar.bz2 | |
fixing customer issue, making changes to dev console to print pretty
Diffstat (limited to 'Pubnub.py')
| -rw-r--r-- | Pubnub.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1406,7 +1406,7 @@ class Pubnub(PubnubCoreAsync):          except ValueError:              return [0, "JSON Error"] -        if response[1] != 200 and 'status' in resp_json: +        if response[1] != 200 and 'message' in resp_json and 'payload' in resp_json:              return {'message': resp_json['message'],                      'payload': resp_json['payload']} | 
