mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
Print report even if exiting due to Ctrl+C
This commit is contained in:
@ -170,6 +170,7 @@ class Config:
|
||||
def dump_to_stdout(self) -> None:
|
||||
self._parser.write(sys.stdout)
|
||||
|
||||
# TODO Rename to "crawl_sections"
|
||||
def crawler_sections(self) -> List[Tuple[str, SectionProxy]]:
|
||||
result = []
|
||||
for name, proxy in self._parser.items():
|
||||
@ -178,6 +179,7 @@ class Config:
|
||||
|
||||
return result
|
||||
|
||||
# TODO Rename to "auth_sections"
|
||||
def authenticator_sections(self) -> List[Tuple[str, SectionProxy]]:
|
||||
result = []
|
||||
for name, proxy in self._parser.items():
|
||||
|
Reference in New Issue
Block a user