changeset 32830:470820c2418d

formatter: open raw template file in posix semantics This should have no effect, but seems good for code consistency.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 06 May 2017 14:48:47 +0900
parents 8016fe56a29e
children de7dc25ecf2e
files mercurial/formatter.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/formatter.py	Sat May 06 14:47:31 2017 +0900
+++ b/mercurial/formatter.py	Sat May 06 14:48:47 2017 +0900
@@ -399,7 +399,7 @@
         # is it a mapfile for a style?
         if os.path.basename(tmpl).startswith("map-"):
             return None, os.path.realpath(tmpl)
-        with open(tmpl, 'rb') as f:
+        with util.posixfile(tmpl, 'rb') as f:
             tmpl = f.read()
         return tmpl, None