From: Jacob Lifshay Date: Fri, 11 Sep 2020 23:12:51 +0000 (-0700) Subject: fix incorrect argparse argument format X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29a149c9ed523d5bf47b0ec6020dbb82892a2a6b;p=utils.git fix incorrect argparse argument format --- 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()