##// END OF EJS Templates
match: fix up a repr to not crash on Python 3...
Augie Fackler -
r40381:d30a19d1 default
parent child Browse files
Show More
@@ -1173,7 +1173,7 b' def _buildmatch(kindpats, globsuffix, li'
1173 1173 else:
1174 1174 dir = '.'
1175 1175 return dir in dirs
1176 regex = b'rootfilesin: %s' % sorted(dirs)
1176 regex = b'rootfilesin: %s' % stringutil.pprint(list(sorted(dirs)))
1177 1177 matchfuncs.append(mf)
1178 1178 else:
1179 1179 regex, mf = _buildregexmatch(kindpats, globsuffix)
General Comments 0
You need to be logged in to leave comments. Login now