From 29a149c9ed523d5bf47b0ec6020dbb82892a2a6b Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 11 Sep 2020 16:12:51 -0700 Subject: [PATCH] fix incorrect argparse argument format --- src/budget_sync/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index 412f21c..d762f08 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -14,7 +14,7 @@ def main(): description="Check for errors in " "Libre-SOC's style of budget tracking in Bugzilla.") parser.add_argument( - "-c, --config", type=argparse.FileType('r'), + "-c", "--config", type=argparse.FileType('r'), required=True, help="The path to the configuration TOML file", dest="config", metavar="") args = parser.parse_args() -- 2.30.2