From f28b45f76a25d4b0d1fcc5bdfaf63ce3ed3fb1c9 Mon Sep 17 00:00:00 2001 From: Martin Taibr Date: Thu, 6 Apr 2017 12:25:00 +0200 Subject: [PATCH] report unreachable files in sorted order --- assets/check-and-fix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/check-and-fix.py b/assets/check-and-fix.py index 2528d04..7218b9f 100755 --- a/assets/check-and-fix.py +++ b/assets/check-and-fix.py @@ -277,7 +277,7 @@ def find_unlinked(all_paths: List[str]): walk_links(canonical_to_real, is_linked, "Home.md") - for path, linked in is_linked.items(): + for path, linked in sorted(is_linked.items()): if not linked: print("not reachable from Home: {}".format(path)) -- 2.39.2