aboutsummaryrefslogtreecommitdiffstats
path: root/python/examples/console.py
diff options
context:
space:
mode:
authorDevendra2014-05-23 20:52:10 +0530
committerDevendra2014-05-23 20:52:10 +0530
commitb60f421b301abf348ab887991809966bbb66087c (patch)
tree943cf57c6430a758c610e8a23523a6145f92e907 /python/examples/console.py
parent26aca4f6f2c6167d5a83be83d1185c54522834e8 (diff)
downloadpubnub-python-b60f421b301abf348ab887991809966bbb66087c.tar.bz2
adding success message after unsubscribe
Diffstat (limited to 'python/examples/console.py')
-rw-r--r--python/examples/console.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/examples/console.py b/python/examples/console.py
index 6147d21..f67e168 100644
--- a/python/examples/console.py
+++ b/python/examples/console.py
@@ -204,6 +204,7 @@ def _unsubscribe_command_handler(channels):
for channel in channels:
pubnub.unsubscribe(channel)
pubnub.unsubscribe(channel + '-pnpres')
+ print_ok('Unsubscribed from : ' + str(channels))
def _grant_command_handler(channel, auth_key, read, write, ttl, async=False):