##// END OF EJS Templates
sslutil: fsencode path returned by certifi (issue6132)...
Augie Fackler -
r42450:ce5f1232 stable
parent child Browse files
Show More
@@ -722,7 +722,7 b' def _defaultcacerts(ui):'
722 certs = certifi.where()
722 certs = certifi.where()
723 if os.path.exists(certs):
723 if os.path.exists(certs):
724 ui.debug('using ca certificates from certifi\n')
724 ui.debug('using ca certificates from certifi\n')
725 return certs
725 return pycompat.fsencode(certs)
726 except (ImportError, AttributeError):
726 except (ImportError, AttributeError):
727 pass
727 pass
728
728
General Comments 0
You need to be logged in to leave comments. Login now