Update configuration.Configuration.sanitize_ssl() docstring

Hasn't tried to find LinkChecker cacert.pem since:
a9ab4d847 ("Remove get_share_file()", 2021-12-30)

which hasn't been installed since:
e3ab9024 ("Remove platform-specific installer stuff and ensure a build .whl wheel file can be built.", 2016-01-17)
This commit is contained in:
Chris Mayo 2023-05-03 19:24:53 +01:00
parent 35e2f5a2f6
commit 60c4e7b671

View file

@ -304,8 +304,7 @@ class Configuration(dict):
def sanitize_ssl(self):
"""Use local installed certificate file if available.
Tries to get system, then certifi, then the own
installed certificate file."""
Tries to get system, then certifi certificate file."""
if self["sslverify"] is True:
try:
self["sslverify"] = get_system_cert_file()