mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
Fix rules not being parsed entirely
This commit is contained in:
@ -119,7 +119,9 @@ class Pferd:
|
||||
|
||||
def print_report(self) -> None:
|
||||
for name in self._crawlers_to_run:
|
||||
crawler = self._crawlers[name]
|
||||
crawler = self._crawlers.get(name)
|
||||
if crawler is None:
|
||||
continue # Crawler failed to load
|
||||
|
||||
log.report("")
|
||||
log.report(f"[bold bright_cyan]Report[/] for {escape(name)}")
|
||||
|
Reference in New Issue
Block a user