diff options
| author | Devendra | 2014-04-24 02:07:56 +0530 | 
|---|---|---|
| committer | Devendra | 2014-04-24 02:07:56 +0530 | 
| commit | 98242257846e9276dd83adbea950f83e25a4f2b6 (patch) | |
| tree | 3682d3716815161aaf41fb06031c32fa6208edf6 /python-tornado/examples/publish-example.py | |
| parent | c98286f500b77dcf426367df0b688f536b77ea9b (diff) | |
| download | pubnub-python-98242257846e9276dd83adbea950f83e25a4f2b6.tar.bz2 | |
pep8 compliance, removing redundant files
Diffstat (limited to 'python-tornado/examples/publish-example.py')
| -rw-r--r-- | python-tornado/examples/publish-example.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python-tornado/examples/publish-example.py b/python-tornado/examples/publish-example.py index 5da6485..456dbf9 100644 --- a/python-tornado/examples/publish-example.py +++ b/python-tornado/examples/publish-example.py @@ -15,7 +15,7 @@ from Pubnub import PubnubTwisted as Pubnub  publish_key = len(sys.argv) > 1 and sys.argv[1] or 'demo'  subscribe_key = len(sys.argv) > 2 and sys.argv[2] or 'demo'  secret_key = len(sys.argv) > 3 and sys.argv[3] or 'demo' -cipher_key = len( sys.argv) > 4 and sys.argv[4] or '' +cipher_key = len(sys.argv) > 4 and sys.argv[4] or ''  ssl_on = len(sys.argv) > 5 and bool(sys.argv[5]) or False  ## ----------------------------------------------------------------------- | 
