diff options
author | Jack Lloyd <[email protected]> | 2021-07-29 08:10:14 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2021-07-29 08:10:14 -0400 |
commit | ac729e4cb23a700a219148ac7c4484b34f876e72 (patch) | |
tree | b3352562ae0ae5d8840a0af2c4e46a59c840795e /configure.py | |
parent | 12105fd8ad92394efeb48ec0c398a9d6854adf5e (diff) |
Disable LGTM false positive
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.py b/configure.py index bf087e00b..8cd3ea559 100755 --- a/configure.py +++ b/configure.py @@ -2955,7 +2955,8 @@ 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('Provided system cert bundle path %s not found, ignoring', options.system_cert_bundle) + logging.warning('System cert bundle '%s' not found, ignoring', # lgtm[py/clear-text-logging-sensitive-data] + options.system_cert_bundle) options.system_cert_bundle = None # Mutates `options` |