From 47a8da5ed0f6986421902bbf89eeeba0f2b26298 Mon Sep 17 00:00:00 2001 From: vmaneagit <79709341+vmaneagit@users.noreply.github.com> Date: Wed, 16 Jun 2021 15:26:28 +0300 Subject: [PATCH] Update nodeconfig updated line 46: argparser = optparse.OptionParser(usage="Usage: %prog [options] [setting|setting=value]") to match the man SYNOPSIS nodeconfig [options] [setting|setting=value] --- confluent_client/bin/nodeconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_client/bin/nodeconfig b/confluent_client/bin/nodeconfig index 00764970..6314be17 100755 --- a/confluent_client/bin/nodeconfig +++ b/confluent_client/bin/nodeconfig @@ -43,7 +43,7 @@ def bailout(msg, code=1): sys.exit(code) -argparser = optparse.OptionParser(usage="Usage: %prog [options] noderange [option|option=value]") +argparser = optparse.OptionParser(usage="Usage: %prog [options] [setting|setting=value]") argparser.add_option('-c', '--comparedefault', dest='comparedefault', action='store_true', default=False, help='Compare given settings to default or list settings '