Submitter | Augie Fackler |
---|---|
Date | Nov. 10, 2016, 10:10 p.m. |
Message ID | <86c54d5610fc355ba0a6.1478815841@arthedain.pit.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/17464/ |
State | Changes Requested |
Headers | show |
Comments
Patch
diff --git a/mercurial/config.py b/mercurial/config.py --- a/mercurial/config.py +++ b/mercurial/config.py @@ -169,5 +169,5 @@ class config(object): def read(self, path, fp=None, sections=None, remap=None): if not fp: - fp = util.posixfile(path) + fp = util.posixfile(path, r'rb') self.parse(path, fp.read(), sections, remap, self.read)