From de08b8039d5bf02b0ec0156e1f6feb091d76aeb3 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Thu, 21 Dec 2023 14:49:11 -0800 Subject: [PATCH] sage -package download: Fix argparse for --no-check-certificate --- build/sage_bootstrap/cmdline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/sage_bootstrap/cmdline.py b/build/sage_bootstrap/cmdline.py index e182321d7da..61de595ca1c 100644 --- a/build/sage_bootstrap/cmdline.py +++ b/build/sage_bootstrap/cmdline.py @@ -292,7 +292,7 @@ def make_parser(): parser_download.add_argument( '--on-error', choices=['stop', 'warn'], default='stop', help='What to do if the tarball cannot be downloaded') - parser.add_argument( + parser_download.add_argument( '--no-check-certificate', action='store_true', help='Do not check SSL certificates for https connections')