aboutsummaryrefslogtreecommitdiffstats
path: root/python/examples/console.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/console.py')
-rw-r--r--python/examples/console.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/examples/console.py b/python/examples/console.py
index dfd59f5..229db93 100644
--- a/python/examples/console.py
+++ b/python/examples/console.py
@@ -331,7 +331,9 @@ class DevConsole(Cmd):
Cmd.__init__(self)
global pubnub
self.intro = "For Help type ? or help . " + \
- "To quit/exit type exit"
+ "To quit/exit type exit" + "\n" + \
+ "Commands can also be provided on command line while starting console (in quotes) ex. " + \
+ "pubnub-console 'init -p demo -s demo'"
self.default_channel = None
self.async = False
pubnub = Pubnub("demo", "demo")