Adjusted option parser

This commit is contained in:
Jamie Hardt
2024-06-30 13:31:10 -07:00
parent c124e977bb
commit b91f383058

View File

@@ -62,25 +62,26 @@ def main():
op.add_option('-c', '--create', default=False, op.add_option('-c', '--create', default=False,
action='store_true', action='store_true',
help='Create a new list') help='create a new list')
op.add_option('-e', '--edit', action='store_true',
help="open batch file in the default editor",
default=False)
op.add_option('-W', '--write', default=False, op.add_option('-W', '--write', default=False,
action='store_true', action='store_true',
help="Execute batch list, write to files") help="execute batch list, write to files")
op.add_option('-p', '--path', metavar='DIR', op.add_option('-p', '--path', metavar='DIR',
help='chdir to DIR before running', help='chdir to DIR before running',
default=None) default=None)
op.add_option('-e', '--edit', action='store_true',
help="Open batch file in the default editor",
default=False)
op.add_option('-n', '--dry-run', action='store_true', op.add_option('-n', '--dry-run', action='store_true',
help="Dry-run -W.") help="dry-run -W.")
op.add_option('-f', '--batchfile', metavar='FILE', op.add_option('-f', '--batchfile', metavar='FILE',
help="Use batch list FILE for reading and writing instead " help="use batch list FILE for reading and writing instead "
"of the default \"MFBATCH_LIST\"", "of the default \"MFBATCH_LIST\"",
default='MFBATCH_LIST') default='MFBATCH_LIST')
op.add_option('--help-commands', action='store_true', default=False, op.add_option('--help-commands', action='store_true', default=False,
dest='help_commands', dest='help_commands',
help='Print a list of available commands for batch lists ' help='print a list of available commands for batch lists '
'and interactive writing.') 'and interactive writing.')
options, _ = op.parse_args() options, _ = op.parse_args()