Skip to content

Commit e766ea6

Browse files
committed
Sort matched names
1 parent db7b543 commit e766ea6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ignore-networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,6 @@
249249
for pat in ignore_patterns:
250250
print('')
251251
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):
253253
print(' ', name)
254254

include-networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@
130130
for pat in include_patterns:
131131
print('')
132132
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):
134134
print(' ', name)
135135

0 commit comments

Comments
 (0)