From: ahmedsamyh Date: Mon, 3 Mar 2025 12:46:56 +0000 (+0500) Subject: [test.py] Change verbose flag: -v -> -V X-Git-Url: https://www.git.momoyon.org/?a=commitdiff_plain;h=dee80c153d9fec2638ebb04e0539ae78b05d825d;p=lang.git [test.py] Change verbose flag: -v -> -V --- diff --git a/test.py b/test.py index 17b5faf..eaabbf8 100755 --- a/test.py +++ b/test.py @@ -84,7 +84,7 @@ def hhelp(): Flags: -h - Same as the help subcommand. - -v - Verbose output. + -V - Verbose output. -x - Stop on first error. ''') @@ -124,7 +124,7 @@ def main(): if flag == 'h': hhelp() exit(0) - elif flag == 'v': + elif flag == 'V': verbose_output = True elif flag == 'x': stop_on_error = True