]> www.git.momoyon.org Git - lang.git/commitdiff
[test.py] Change verbose flag: -v -> -V
authorahmedsamyh <ahmedsamyh10@gmail.com>
Mon, 3 Mar 2025 12:46:56 +0000 (17:46 +0500)
committerahmedsamyh <ahmedsamyh10@gmail.com>
Mon, 3 Mar 2025 12:46:56 +0000 (17:46 +0500)
test.py

diff --git a/test.py b/test.py
index 17b5fafbe41bf34ea0a95a1271762aa2fa97086d..eaabbf8f4ab03c6b9fb3d1bd8daf5fadb9d892ed 100755 (executable)
--- 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