Fixed bug in argparser help generation

This commit is contained in:
Jamie Hardt
2024-07-07 13:28:23 -07:00
parent 37e1fed43d
commit 2078c1559a

View File

@@ -66,7 +66,7 @@ def main():
"""
Entry point implementation
"""
op = ArgumentParser(usage="%prog (-c | -e | -W) [options]")
op = ArgumentParser(prog='mfbatch', usage='%(prog)s (-c | -e | -W) [options]')
op.add_argument('-c', '--create', default=False,
action='store_true',