2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-12-25 12:41:39 +00:00

Fix nodelist formatting of error

Error needed a newline after message to be clear.
This commit is contained in:
Jarrod Johnson 2015-10-19 14:23:02 -04:00
parent 204f6de7e9
commit dec0543ce3

View File

@ -43,7 +43,7 @@ if len(args) > 1:
seenattributes = set([])
for res in session.read('/noderange/{0}/attributes/all'.format(noderange)):
if 'error' in res:
sys.stderr.write(res['error'])
sys.stderr.write(res['error'] + '\n')
exitcode = 1
continue
for node in res['databynode']: