mirror of
https://github.com/pirate/ArchiveBox.git
synced 2025-08-24 07:03:03 +02:00
fix parser bailing out with IndexError
This commit is contained in:
2
parse.py
2
parse.py
@@ -49,7 +49,7 @@ def parse_links(path):
|
||||
links += list(parser_func(file))
|
||||
if links:
|
||||
break
|
||||
except (ValueError, TypeError):
|
||||
except (ValueError, TypeError, IndexError):
|
||||
# parser not supported on this file
|
||||
pass
|
||||
|
||||
|
Reference in New Issue
Block a user