mirror of
https://github.com/stevenrobertson/cuburn.git
synced 2025-02-05 11:40:04 -05:00
Fix little output glitch
This commit is contained in:
parent
c424af5124
commit
54e2192dde
2
dist/server.py
vendored
2
dist/server.py
vendored
@ -77,7 +77,7 @@ def setup_worker_listener(addrs, tq, rq):
|
|||||||
while True:
|
while True:
|
||||||
rsp = wsock.recv_multipart(copy=False)
|
rsp = wsock.recv_multipart(copy=False)
|
||||||
if rsp[2].bytes != '':
|
if rsp[2].bytes != '':
|
||||||
print '< ', ' '.join([r.bytes for r in rsp[1:-1]])
|
print '< ', ' '.join([r.bytes for r in rsp[2:-1]])
|
||||||
rq.put(rsp[2:])
|
rq.put(rsp[2:])
|
||||||
readyq.put(rsp[0])
|
readyq.put(rsp[0])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user