fix parser bailing out with IndexError

This commit is contained in:
Nick Sweeting 2017-10-30 03:03:31 -05:00
parent 965130815d
commit 734c99cfdb
2 changed files with 2 additions and 2 deletions

View file

@ -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