Skip to content

Commit c302941

Browse files
committed
Merge branch 'rh/remote-hg-bzr-updates' (early part)
Unbreaks a recent breakage due to use of unquote-c-style. This may need to be cherry-picked down to 1.8.4.x series. * 'rh/remote-hg-bzr-updates' (early part): remote-hg: don't decode UTF-8 paths into Unicode objects
2 parents 5fd09df + c939d24 commit c302941

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/remote-helpers/git-remote-hg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ def parse_commit(parser):
747747
f = { 'deleted' : True }
748748
else:
749749
die('Unknown file command: %s' % line)
750-
path = c_style_unescape(path).decode('utf-8')
750+
path = c_style_unescape(path)
751751
files[path] = f
752752

753753
# only export the commits if we are on an internal proxy repo

0 commit comments

Comments
 (0)