Fix rules not being parsed entirely

This commit is contained in:
Joscha
2021-05-25 15:42:46 +02:00
parent edb52a989e
commit f68849c65f
3 changed files with 16 additions and 11 deletions

View File

@ -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)}")