Skip to content

Commit e450604

Browse files
committed
vc.git: Fix bad argument
1 parent f016bd0 commit e450604

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

meld/vc/git.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ def remerge_with_ancestor(self, local, base, remote):
187187
pre-merged result everywhere that has no conflict, and the
188188
common ancestor anywhere there *is* a conflict.
189189
"""
190-
proc = self.run("merge-file", "-p", "--diff3", local, base, remote, universal_newlines=False)
190+
proc = self.run(
191+
"merge-file", "-p", "--diff3", local, base, remote,
192+
use_locale_encoding=False)
191193
vc_file = io.BytesIO(
192194
_vc.base_from_diff3(proc.stdout.read()))
193195

0 commit comments

Comments
 (0)