aboutsummaryrefslogtreecommitdiff
path: root/contrib/zmq
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-01-20 22:55:26 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2017-01-20 22:56:11 +0100
commit5cdf10611fe5ea77d4632c24e69e68aa9b8119e0 (patch)
tree75f0b57b7d9d177d97e285aa2f3bc9e40bb10429 /contrib/zmq
parent82274c02ed2d82537dc55f008a29edb1bc09bbc4 (diff)
downloadbitcoin-5cdf10611fe5ea77d4632c24e69e68aa9b8119e0.tar.xz
Remove redundant semicolons in Python code
Diffstat (limited to 'contrib/zmq')
-rwxr-xr-xcontrib/zmq/zmq_sub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/zmq/zmq_sub.py b/contrib/zmq/zmq_sub.py
index 6f57aa47e9..5707188f23 100755
--- a/contrib/zmq/zmq_sub.py
+++ b/contrib/zmq/zmq_sub.py
@@ -22,7 +22,7 @@ try:
msg = zmqSubSocket.recv_multipart()
topic = str(msg[0])
body = msg[1]
- sequence = "Unknown";
+ sequence = "Unknown"
if len(msg[-1]) == 4:
msgSequence = struct.unpack('<I', msg[-1])[-1]
sequence = str(msgSequence)