Browse Source

Seems it will sometimes raise AssertionError.

tags/v0.2
Ben Kurtovic 10 years ago
parent
commit
699f6e3b17
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/wiki/copyvios/parsers.py

+ 1
- 1
earwigbot/wiki/copyvios/parsers.py View File

@@ -207,7 +207,7 @@ class _PDFParser(_BaseTextParser):
pages = pdfpage.PDFPage.get_pages(StringIO(self.text)) pages = pdfpage.PDFPage.get_pages(StringIO(self.text))
for page in pages: for page in pages:
interp.process_page(page) interp.process_page(page)
except (pdftypes.PDFException, psparser.PSException):
except (pdftypes.PDFException, psparser.PSException, AssertionError):
return output.getvalue().decode("utf8") return output.getvalue().decode("utf8")
finally: finally:
conv.close() conv.close()


Loading…
Cancel
Save