From c68c4d8cf76ce1789fbcdb529c61bc62dd607018 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 21 Sep 2018 10:41:15 -0400 Subject: [PATCH] Fix the 'list' subcommand of nodefirmware nodefirmware did not properly set up if 'list' was given --- confluent_client/bin/nodefirmware | 2 ++ 1 file changed, 2 insertions(+) diff --git a/confluent_client/bin/nodefirmware b/confluent_client/bin/nodefirmware index e514d818..f284dc69 100755 --- a/confluent_client/bin/nodefirmware +++ b/confluent_client/bin/nodefirmware @@ -74,6 +74,8 @@ try: components = [] for arg in comps: components += arg.split(',') + if not components: + components = ['all'] except IndexError: argparser.print_help()