Fix brute-force short option

This commit is contained in:
Bernard Cafarelli 2020-01-06 22:19:23 +01:00
parent b25c66e9ab
commit 90464f8697
No known key found for this signature in database
GPG Key ID: 5A761FC3AEC20F13
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ def parse_args():
# here are the different allowed command line options (getopt args)
getopt_options = {'short': {}, 'long': {}}
getopt_options['short']['global'] = "hVCqv1bf:piI"
getopt_options['short']['global'] = "hVCqv1b:f:piI"
getopt_options['long']['global'] = [
"help", "version", "nocolor", "quiet", "verbose", "oneshot",
"brute-force=", "format=", "progress", "mirror", "ignore-pre-release",