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

Fix the 'list' subcommand of nodefirmware

nodefirmware did not properly set up if 'list' was given
This commit is contained in:
Jarrod Johnson 2018-09-21 10:41:15 -04:00
parent 1de84f0417
commit c68c4d8cf7

View File

@ -74,6 +74,8 @@ try:
components = []
for arg in comps:
components += arg.split(',')
if not components:
components = ['all']
except IndexError:
argparser.print_help()