mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
Use sorted path order when debugging transforms
This commit is contained in:
parent
5beb4d9a2d
commit
474aa7e1cc
@ -343,7 +343,7 @@ class Crawler(ABC):
|
|||||||
return
|
return
|
||||||
|
|
||||||
seen: Set[PurePath] = set()
|
seen: Set[PurePath] = set()
|
||||||
for known in self.prev_report.known_files:
|
for known in sorted(self.prev_report.known_files):
|
||||||
looking_at = list(reversed(known.parents)) + [known]
|
looking_at = list(reversed(known.parents)) + [known]
|
||||||
for path in looking_at:
|
for path in looking_at:
|
||||||
if path in seen:
|
if path in seen:
|
||||||
|
Loading…
Reference in New Issue
Block a user