mercurial/win32.py
changeset 16761 07741a5d6608
parent 16687 e34106fa0dc3
parent 16759 133a7922a900
child 16806 186049f70026
--- a/mercurial/win32.py	Sun May 20 01:28:31 2012 +0200
+++ b/mercurial/win32.py	Mon May 21 16:35:27 2012 -0500
@@ -5,7 +5,6 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-import encoding
 import ctypes, errno, os, struct, subprocess, random
 
 _kernel32 = ctypes.windll.kernel32
@@ -290,8 +289,8 @@
             if res != _ERROR_SUCCESS:
                 continue
             if type.value == _REG_SZ:
-                # never let a Unicode string escape into the wild
-                return encoding.tolocal(buf.value.encode('UTF-8'))
+                # string is in ANSI code page, aka local encoding
+                return buf.value
             elif type.value == _REG_DWORD:
                 fmt = '<L'
                 s = ctypes.string_at(byref(buf), struct.calcsize(fmt))