Skip to content

Commit

Permalink
Merge branch 'rh/remote-hg-bzr-updates' (early part)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gitster committed Nov 25, 2013
2 parents 5fd09df + c939d24 commit c302941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/remote-helpers/git-remote-hg
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ def parse_commit(parser):
f = { 'deleted' : True }
else:
die('Unknown file command: %s' % line)
path = c_style_unescape(path).decode('utf-8')
path = c_style_unescape(path)
files[path] = f

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

0 comments on commit c302941

Please sign in to comment.