ソースを参照

Seems it will sometimes raise AssertionError.

tags/v0.2
Ben Kurtovic 9年前
コミット
699f6e3b17
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      earwigbot/wiki/copyvios/parsers.py

+ 1
- 1
earwigbot/wiki/copyvios/parsers.py ファイルの表示

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


読み込み中…
キャンセル
保存