diff options
-rwxr-xr-x | doc/zmq-ctrl/zmq_remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/zmq-ctrl/zmq_remote.py b/doc/zmq-ctrl/zmq_remote.py index 47da520..56465d3 100755 --- a/doc/zmq-ctrl/zmq_remote.py +++ b/doc/zmq-ctrl/zmq_remote.py @@ -51,7 +51,7 @@ if socks: print("Received: {}".format(len(data))) for i,part in enumerate(data): - print(" RX {}: {}".format(i, part)) + print(" RX {}: {}".format(i, part.decode().replace('\n',' '))) else: print("ZMQ error: timeout") |