mercurial/patch.py
changeset 37458 00e4bd97b095
parent 37456 19becdf565ef
child 37463 bbd240f81ac5
--- a/mercurial/patch.py	Sat Apr 07 13:46:32 2018 +0900
+++ b/mercurial/patch.py	Sat Apr 07 20:50:38 2018 +0900
@@ -2103,8 +2103,9 @@
     cwd = repo.root
     if cwd:
         args.append('-d %s' % procutil.shellquote(cwd))
-    fp = procutil.popen('%s %s -p%d < %s' % (patcher, ' '.join(args), strip,
-                                             procutil.shellquote(patchname)))
+    cmd = ('%s %s -p%d < %s'
+           % (patcher, ' '.join(args), strip, procutil.shellquote(patchname)))
+    fp = procutil.popen(cmd, 'rb')
     try:
         for line in util.iterfile(fp):
             line = line.rstrip()