2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-04-08 17:11:52 +00:00

Fix stray blank line at end of nodelist

Wrong indentation level for nodelist resulting in
spurious line.
This commit is contained in:
Jarrod Johnson 2024-03-06 16:27:09 -05:00
parent 496e7b4ef3
commit 635ef6073c

View File

@ -69,7 +69,7 @@ async def main():
else:
elem=(res['item']['href'].replace('/', ''))
list.append(elem)
print(options.delim.join(list))
print(options.delim.join(list))
sys.exit(exitcode)