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) raw_text = self._assemble_ocr_sections(imgs, middle, raw_text)
return raw_text return raw_text
raise OCRError( raise OCRError(
"The guessed language is not available in this instance of " "The guessed language ({}) is not available in this instance "
"Tesseract." "of Tesseract.".format(guessed_language)
) )
def _ocr(self, imgs, lang): def _ocr(self, imgs, lang):