Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Belval committed Aug 1, 2022
1 parent ce354e1 commit 27497dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf2image/pdf2image.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def convert_from_path(
except TimeoutExpired:
proc.kill()
outs, errs = proc.communicate()
raise PDFPopplerTimeoutError("Run poppler poppler timeout.")
raise PDFPopplerTimeoutError("Run poppler timeout.")

if b"Syntax Error" in err and strict:
raise PDFSyntaxError(err.decode("utf8", "ignore"))
Expand Down

0 comments on commit 27497dc

Please sign in to comment.