mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Use sorted path order when debugging transforms
This commit is contained in:
parent
5beb4d9a2d
commit
474aa7e1cc
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue