2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Correct typo in the nodeshell command

The November 6th change contained a typo.
This commit is contained in:
Jarrod Johnson 2017-11-15 09:41:01 -05:00
parent 0b0f325240
commit e63d7f9fe3

View File

@ -107,7 +107,7 @@ def run():
run_cmdv(node, cmdv, all, pipedesc)
for node in sortutil.natural_sort(pernodeout):
for line in pernodeout[node]:
sys.stdout.ouwrite('{0}: {1}'.format(node, line))
sys.stdout.write('{0}: {1}'.format(node, line))
sys.stdout.flush()
if all:
rdy, _, _ = select.select(all, [], [], 10)