changeset 31154:fd3f4bf9325e

config: load included config files in binary mode I guess we've been getting lucky that this works in Python 2. This fixes loading included config files in Python 3 (it used to fail on the "somebody set up us the BOM" check.)
author Augie Fackler <raf@durin42.com>
date Fri, 03 Mar 2017 13:28:24 -0500
parents 5cab44fd1257
children 8266802f0fa4
files mercurial/config.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/config.py	Wed Mar 01 16:39:48 2017 -0800
+++ b/mercurial/config.py	Fri Mar 03 13:28:24 2017 -0500
@@ -169,5 +169,5 @@
 
     def read(self, path, fp=None, sections=None, remap=None):
         if not fp:
-            fp = util.posixfile(path)
+            fp = util.posixfile(path, 'rb')
         self.parse(path, fp.read(), sections, remap, self.read)