From 2c567cbdedcff05b346ed30157e62024293c166e Mon Sep 17 00:00:00 2001 From: lash Date: Fri, 21 Jan 2022 10:21:17 +0000 Subject: [PATCH] Remove unneeded change in -vv comment --- chainlib/cli/arg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainlib/cli/arg.py b/chainlib/cli/arg.py index b61c9d6..37ab6cf 100644 --- a/chainlib/cli/arg.py +++ b/chainlib/cli/arg.py @@ -141,7 +141,7 @@ class ArgumentParser(argparse.ArgumentParser): if arg_flags & Flag.VERBOSE: self.add_argument('--no-logs', dest='no_logs',action='store_true', help='Turn off all logging') self.add_argument('-v', action='store_true', help='Be verbose') - self.add_argument('-vv', action='store_true', help='Be very verbose') + self.add_argument('-vv', action='store_true', help='Be more verbose') if arg_flags & Flag.CONFIG: self.add_argument('-c', '--config', type=str, default=env.get('CONFINI_DIR'), help='Configuration directory') self.add_argument('-n', '--namespace', type=str, help='Configuration namespace')