remote-hg: don't decode UTF-8 paths into Unicode objects
[gitweb.git] / contrib / remote-helpers / git-remote-hg
index 85abbedb1c75f67a9978388d8642b5cc265c45fc..1c713e0af1894edba1166898c4301932fd7f2595 100755 (executable)
@@ -725,7 +725,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