mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-27 21:24:16 -04:00
ignore BaseException lgtm errors
This commit is contained in:
parent
9f1470cf03
commit
4715ace7dd
2 changed files with 4 additions and 4 deletions
|
@ -182,7 +182,7 @@ def archive_links(all_links: Union[Iterable[Link], QuerySet], overwrite: bool=Fa
|
|||
except KeyboardInterrupt:
|
||||
log_archiving_paused(num_links, idx, link.timestamp)
|
||||
raise SystemExit(0)
|
||||
except BaseException:
|
||||
except BaseException: # lgtm [py/catch-base-exception]
|
||||
print()
|
||||
raise
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue