mercurial/dirstate.py
changeset 34022 d5b2beca16c0
parent 33981 5cb0a8fe096e
child 34188 1246acdad653
--- a/mercurial/dirstate.py	Wed Aug 30 14:04:55 2017 -0700
+++ b/mercurial/dirstate.py	Tue Aug 22 20:03:07 2017 -0400
@@ -982,7 +982,7 @@
                             matchedir(nf)
                         notfoundadd(nf)
                     else:
-                        badfn(ff, inst.strerror)
+                        badfn(ff, encoding.strtolocal(inst.strerror))
 
         # Case insensitive filesystems cannot rely on lstat() failing to detect
         # a case-only rename.  Prune the stat object for any file that does not
@@ -1088,7 +1088,8 @@
                     entries = listdir(join(nd), stat=True, skip=skip)
                 except OSError as inst:
                     if inst.errno in (errno.EACCES, errno.ENOENT):
-                        match.bad(self.pathto(nd), inst.strerror)
+                        match.bad(self.pathto(nd),
+                                  encoding.strtolocal(inst.strerror))
                         continue
                     raise
                 for f, kind, st in entries: