# HG changeset patch # User Augie Fackler # Date 1519969075 18000 # Node ID 9adfa48792a7bdced8936d8bc8830d27c267f1a5 # Parent 5a3f8da663e52adaf54061750bb75b8dbefb8278 match: some minimal pycompat fixes guided by test-hgignore.t Differential Revision: https://phab.mercurial-scm.org/D2551 diff -r 5a3f8da663e5 -r 9adfa48792a7 mercurial/match.py --- a/mercurial/match.py Fri Mar 02 00:37:07 2018 -0500 +++ b/mercurial/match.py Fri Mar 02 00:37:55 2018 -0500 @@ -16,6 +16,7 @@ encoding, error, pathutil, + pycompat, util, ) @@ -226,7 +227,7 @@ except IOError as inst: if warn: warn(_("skipping unreadable pattern file '%s': %s\n") % - (pat, inst.strerror)) + (pat, util.forcebytestr(inst.strerror))) continue # else: re or relre - which cannot be normalized kindpats.append((kind, pat, '')) @@ -428,7 +429,7 @@ @encoding.strmethod def __repr__(self): - return ('' % self._pats) + return ('' % pycompat.bytestr(self._pats)) class exactmatcher(basematcher): '''Matches the input files exactly. They are interpreted as paths, not