mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 22:54:27 -04:00
fix parser bailing out with IndexError
This commit is contained in:
parent
965130815d
commit
734c99cfdb
2 changed files with 2 additions and 2 deletions
2
parse.py
2
parse.py
|
@ -49,7 +49,7 @@ def parse_links(path):
|
||||||
links += list(parser_func(file))
|
links += list(parser_func(file))
|
||||||
if links:
|
if links:
|
||||||
break
|
break
|
||||||
except (ValueError, TypeError):
|
except (ValueError, TypeError, IndexError):
|
||||||
# parser not supported on this file
|
# parser not supported on this file
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
2
util.py
2
util.py
|
@ -387,7 +387,7 @@ def cleanup_archive(path, links):
|
||||||
|
|
||||||
if unmatched:
|
if unmatched:
|
||||||
print('[!] Warning! {} unrecognized folders in html/archive/'.format(len(unmatched)))
|
print('[!] Warning! {} unrecognized folders in html/archive/'.format(len(unmatched)))
|
||||||
print('\n '.join(unmatched))
|
print(' '+ '\n '.join(unmatched))
|
||||||
|
|
||||||
|
|
||||||
def html_appended_url(link):
|
def html_appended_url(link):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue