From f8eb760eb1dff03526117252a8e16309190e147b Mon Sep 17 00:00:00 2001 From: rffontenelle Date: Sun, 28 Apr 2024 19:46:07 +0000 Subject: [PATCH] Invert order of short and abbreviate modified flag To follow all other command line arguments Signed-off-by: rffontenelle --- pospell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pospell.py b/pospell.py index 7a4f674..deb0911 100644 --- a/pospell.py +++ b/pospell.py @@ -286,7 +286,7 @@ def parse_args(): parser.add_argument("--debug", action="store_true") parser.add_argument("-p", "--personal-dict", type=str) parser.add_argument( - "--modified", "-m", action="store_true", help="Use git to find modified files." + "-m", "--modified", action="store_true", help="Use git to find modified files." ) parser.add_argument( "-j", -- 2.30.2