aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2022-01-22 22:29:44 -0600
committerAnthony Wang2022-01-22 22:29:44 -0600
commit81c7f3961415dcf72fee9be0d462c60d8c840743 (patch)
tree75223676296f7a1a58cbf73668028664bb6944e4
parent9a97a983ae2d11b5b9fad8e4f8f89b1493bf6872 (diff)
Fix mkbinder.py --force bug
-rwxr-xr-xmkbinder.py2
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()