Fix mkbinder.py --force bug

This commit is contained in:
Anthony Wang 2022-01-22 22:29:44 -06:00
parent 9a97a983ae
commit 81c7f39614
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -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()