diff options
-rwxr-xr-x | mkbinder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkbinder.py b/mkbinder.py index 1222376..ffd0440 100755 --- a/mkbinder.py +++ b/mkbinder.py @@ -12,7 +12,7 @@ import weasyprint # CLI arguments parser = ArgumentParser() parser.add_argument('--backend', '-b', help = 'change the download backend', default = 'pdfkit', choices = ['pdfkit', 'weasyprint']) -parser.add_argument('--force', '-f', help = 'force download all links', action='store_false') +parser.add_argument('--force', '-f', help = 'force download all links', action='store_true') args = parser.parse_args() |