summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-11-25 08:20:02 -0800
committerJunio C Hamano <gitster@pobox.com>2013-11-25 08:20:02 -0800
commitc302941cd7670357bcd8209218e5f73c39e13d16 (patch)
tree7c50b770dca13829104e846bfea57bfd89e8611d
parent5fd09df3937f54c5cfda4f1087f5d99433cce527 (diff)
parentc939d241673ad093336e936075a029127368d87e (diff)
downloadgit-c302941cd7670357bcd8209218e5f73c39e13d16.tar.gz
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
-rwxr-xr-xcontrib/remote-helpers/git-remote-hg2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/remote-helpers/git-remote-hg b/contrib/remote-helpers/git-remote-hg
index 3222afd9da..c6026b9bed 100755
--- a/contrib/remote-helpers/git-remote-hg
+++ b/contrib/remote-helpers/git-remote-hg
@@ -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