From: Martin Taibr Date: Thu, 6 Apr 2017 10:25:00 +0000 (+0200) Subject: report unreachable files in sorted order X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic.wiki.git;a=commitdiff_plain;h=f28b45f76a25d4b0d1fcc5bdfaf63ce3ed3fb1c9 report unreachable files in sorted order --- 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))