|
42 | 42 |
|
43 | 43 | def get_default_archive_methods():
|
44 | 44 | return [
|
45 |
| - ('title', should_save_title, save_title), |
46 | 45 | ('favicon', should_save_favicon, save_favicon),
|
47 | 46 | ('headers', should_save_headers, save_headers),
|
48 | 47 | ('singlefile', should_save_singlefile, save_singlefile),
|
49 | 48 | ('pdf', should_save_pdf, save_pdf),
|
50 | 49 | ('screenshot', should_save_screenshot, save_screenshot),
|
51 | 50 | ('dom', should_save_dom, save_dom),
|
52 | 51 | ('wget', should_save_wget, save_wget),
|
53 |
| - ('readability', should_save_readability, save_readability), # keep readability below wget and singlefile, as it depends on them |
| 52 | + ('title', should_save_title, save_title), # keep title and readability below wget and singlefile, as it depends on them |
| 53 | + ('readability', should_save_readability, save_readability), |
54 | 54 | ('mercury', should_save_mercury, save_mercury),
|
55 | 55 | ('git', should_save_git, save_git),
|
56 | 56 | ('media', should_save_media, save_media),
|
@@ -182,7 +182,7 @@ def archive_links(all_links: Union[Iterable[Link], QuerySet], overwrite: bool=Fa
|
182 | 182 | except KeyboardInterrupt:
|
183 | 183 | log_archiving_paused(num_links, idx, link.timestamp)
|
184 | 184 | raise SystemExit(0)
|
185 |
| - except BaseException: # lgtm [py/catch-base-exception] |
| 185 | + except BaseException: |
186 | 186 | print()
|
187 | 187 | raise
|
188 | 188 |
|
|
0 commit comments