aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xpython/examples/dev-console.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/python/examples/dev-console.py b/python/examples/dev-console.py
index 7814cef..2e93c7e 100755
--- a/python/examples/dev-console.py
+++ b/python/examples/dev-console.py
@@ -55,17 +55,17 @@ parser.add_option("--uuid",
print(options)
-pubnub = Pubnub(options.publish_key,
- options.subscribe_key,
- options.secret_key,
- options.cipher_key,
- options.auth_key,
- options.ssl,
- options.origin,
+pubnub = Pubnub(options.publish_key,
+ options.subscribe_key,
+ options.secret_key,
+ options.cipher_key,
+ options.auth_key,
+ options.ssl,
+ options.origin,
options.uuid)
-class color:
+class color(object):
PURPLE = '\033[95m'
CYAN = '\033[96m'
DARKCYAN = '\033[36m'