Mercurial > public > mercurial-scm > hg-stable
diff mercurial/windows.py @ 34040:d5b2beca16c0
python3: wrap all uses of <exception>.strerror with strtolocal
Our string literals are bytes, and we mostly want to %-format a
strerror into a one of those literals, so this fixes a ton of issues.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 22 Aug 2017 20:03:07 -0400 |
parents | 8cb9e921ef8c |
children | 0fa781320203 |
line wrap: on
line diff
--- a/mercurial/windows.py Wed Aug 30 14:04:55 2017 -0700 +++ b/mercurial/windows.py Tue Aug 22 20:03:07 2017 -0400 @@ -137,7 +137,8 @@ return fp except WindowsError as err: # convert to a friendlier exception - raise IOError(err.errno, '%s: %s' % (name, err.strerror)) + raise IOError(err.errno, '%s: %s' % ( + name, encoding.strtolocal(err.strerror))) # may be wrapped by win32mbcs extension listdir = osutil.listdir