File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 249
249
for pat in ignore_patterns :
250
250
print ('' )
251
251
print ('Names matched by "' + str (pat )+ '":' )
252
- for name in pattern_matched_names [pattern_map [pat ]]: #itertools.islice(pattern_matched_names[pattern_map[pat]], 10):
252
+ for name in sorted ( pattern_matched_names [pattern_map [pat ]]) : #itertools.islice(pattern_matched_names[pattern_map[pat]], 10):
253
253
print (' ' , name )
254
254
Original file line number Diff line number Diff line change 130
130
for pat in include_patterns :
131
131
print ('' )
132
132
print ('Names matched by "' + str (pat )+ '":' )
133
- for name in pattern_matched_names [pattern_map [pat ]]: #itertools.islice(pattern_matched_names[pat], 10):
133
+ for name in sorted ( pattern_matched_names [pattern_map [pat ]]) : #itertools.islice(pattern_matched_names[pat], 10):
134
134
print (' ' , name )
135
135
You can’t perform that action at this time.
0 commit comments