feeds: add SyntaxError catch

This commit is contained in:
pictuga 2020-04-20 16:15:15 +02:00
parent 2719bd6776
commit 325a373e3e

View File

@ -100,7 +100,7 @@ def parse(data, url=None, mimetype=None, encoding=None):
try:
feed = parser(data, encoding=encoding)
except (ValueError):
except (ValueError, SyntaxError):
# parsing did not work
pass