##// END OF EJS Templates
py3: use pycompat.bytestr() on bytes before %r-ing it...
Pulkit Goyal -
r38039:2f406142 default
parent child Browse files
Show More
@@ -404,7 +404,7 b' class patternmatcher(basematcher):'
404
404
405 @encoding.strmethod
405 @encoding.strmethod
406 def __repr__(self):
406 def __repr__(self):
407 return ('<patternmatcher patterns=%r>' % self._pats)
407 return ('<patternmatcher patterns=%r>' % pycompat.bytestr(self._pats))
408
408
409 class includematcher(basematcher):
409 class includematcher(basematcher):
410
410
General Comments 0
You need to be logged in to leave comments. Login now