Improve the unknown language error message

This commit is contained in:
Daniel Quinn 2018-09-23 12:41:14 +01:00
parent b420281be0
commit 117d7dad04

View File

@ -172,8 +172,8 @@ class RasterisedDocumentParser(DocumentParser):
raw_text = self._assemble_ocr_sections(imgs, middle, raw_text)
return raw_text
raise OCRError(
"The guessed language is not available in this instance of "
"Tesseract."
"The guessed language ({}) is not available in this instance "
"of Tesseract.".format(guessed_language)
)
def _ocr(self, imgs, lang):