equal
deleted
inserted
replaced
1171 if i >= 0: |
1171 if i >= 0: |
1172 dir = f[:i] |
1172 dir = f[:i] |
1173 else: |
1173 else: |
1174 dir = '.' |
1174 dir = '.' |
1175 return dir in dirs |
1175 return dir in dirs |
1176 regex = b'rootfilesin: %s' % sorted(dirs) |
1176 regex = b'rootfilesin: %s' % stringutil.pprint(list(sorted(dirs))) |
1177 matchfuncs.append(mf) |
1177 matchfuncs.append(mf) |
1178 else: |
1178 else: |
1179 regex, mf = _buildregexmatch(kindpats, globsuffix) |
1179 regex, mf = _buildregexmatch(kindpats, globsuffix) |
1180 matchfuncs.append(mf) |
1180 matchfuncs.append(mf) |
1181 |
1181 |