diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index 09fdd4471..36455be10 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -285,7 +285,7 @@ def image_to_string(args): try: orientation = ocr.detect_orientation(f, lang=lang) f = f.rotate(orientation["angle"], expand=1) - except (TesseractError, OtherTesseractError): + except (TesseractError, OtherTesseractError, KeyError): pass return ocr.image_to_string(f, lang=lang)