diff options
author | Jack Lloyd <[email protected]> | 2021-07-30 21:05:03 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2021-07-30 21:05:03 -0400 |
commit | 709bfa777f8dd43ef5d00531c4b82b0ad61d5c78 (patch) | |
tree | e998b02cbabb81f6995347c15b5afcd7da3c632e /configure.py | |
parent | ac729e4cb23a700a219148ac7c4484b34f876e72 (diff) |
Fix build problem
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.py b/configure.py index 8cd3ea559..fd83cab07 100755 --- a/configure.py +++ b/configure.py @@ -2955,8 +2955,7 @@ def set_defaults_for_unset_options(options, info_arch, info_cc, info_os): # pyli break else: if not os.access(options.system_cert_bundle, os.R_OK): - logging.warning('System cert bundle '%s' not found, ignoring', # lgtm[py/clear-text-logging-sensitive-data] - options.system_cert_bundle) + logging.warning('System cert bundle "%s" not found, ignoring', options.system_cert_bundle) options.system_cert_bundle = None # Mutates `options` |