diff --git a/owocr/run.py b/owocr/run.py index fd826bd..620608d 100644 --- a/owocr/run.py +++ b/owocr/run.py @@ -515,7 +515,7 @@ def are_images_identical(img1, img2): def process_and_write_results(img_or_path, write_to, notifications, last_result, filtering): - if auto_pause_handler and not paused: + if auto_pause_handler: auto_pause_handler.stop() engine_instance = engine_instances[engine_index] diff --git a/setup.py b/setup.py index dcb3dc6..ce447cf 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ long_description = (Path(__file__).parent / "README.md").read_text('utf-8') setup( name="owocr", - version='1.8.2', + version='1.8.3', description="Japanese OCR", long_description=long_description, long_description_content_type="text/markdown",