diff options
Diffstat (limited to 'python/examples')
| -rw-r--r-- | python/examples/console.py | 4 | ||||
| -rw-r--r-- | python/examples/pubnub-console/pubnub-console | 4 | 
2 files changed, 6 insertions, 2 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") diff --git a/python/examples/pubnub-console/pubnub-console b/python/examples/pubnub-console/pubnub-console index dfd59f5..229db93 100644 --- a/python/examples/pubnub-console/pubnub-console +++ b/python/examples/pubnub-console/pubnub-console @@ -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") | 
