# HG changeset patch # User Augie Fackler # Date 1557346190 14400 # Node ID ce5f1232631ffd86d283e0087cf29b19a5bb039a # Parent e45c6b153e5157be5518f671b22f99fbab52e792 sslutil: fsencode path returned by certifi (issue6132) By inspection, this is the only codepath that could be returning a string instead of a bytes on Python 3. diff -r e45c6b153e51 -r ce5f1232631f mercurial/sslutil.py --- a/mercurial/sslutil.py Mon May 06 22:10:34 2019 -0400 +++ b/mercurial/sslutil.py Wed May 08 16:09:50 2019 -0400 @@ -722,7 +722,7 @@ certs = certifi.where() if os.path.exists(certs): ui.debug('using ca certificates from certifi\n') - return certs + return pycompat.fsencode(certs) except (ImportError, AttributeError): pass