summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAllan Lewis <allanlewis@users.noreply.github.com>2016-04-27 12:15:16 +0100
committerAllan Lewis <allanlewis@users.noreply.github.com>2016-04-27 13:56:11 +0100
commitf1975aa38092f65c6276066e5e72161eb0369539 (patch)
tree6b9342235399c9ebc1614ec83203b2ad2f152fef /examples
parent953d46928030705057f16c7e1a3420cd666e9b34 (diff)
downloadwebsocket-client-f1975aa38092f65c6276066e5e72161eb0369539.tar.gz
echoapp_client: [PEP 8] Add space before comment
Diffstat (limited to 'examples')
-rw-r--r--examples/echoapp_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echoapp_client.py b/examples/echoapp_client.py
index 8689379..c15b35f 100644
--- a/examples/echoapp_client.py
+++ b/examples/echoapp_client.py
@@ -1,7 +1,7 @@
import websocket
try:
import thread
-except ImportError: #TODO use Threading instead of _thread in python3
+except ImportError: # TODO use Threading instead of _thread in python3
import _thread as thread
import time
import sys