Merge pull request #294 from matthewmoto/fix_pdftotext_errors

Fixing error sentinel for pdftotext when the PDF has no text (scanned…
This commit is contained in:
Daniel Quinn 2018-02-01 16:20:42 +01:00 committed by GitHub
commit 5479942fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,6 +235,6 @@ def get_text_from_pdf(pdf_file):
try:
pdf = pdftotext.PDF(f)
except pdftotext.Error:
return False
return ""
return "\n".join(pdf)