From bcf77375c015060c42f0c3108b798f188ec22ca6 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Tue, 28 Jan 2020 07:33:28 -0800 Subject: [PATCH] Fix grammar in output message --- src/ocrmypdf/_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ocrmypdf/_sync.py b/src/ocrmypdf/_sync.py index 493664a0..a4c18b21 100644 --- a/src/ocrmypdf/_sync.py +++ b/src/ocrmypdf/_sync.py @@ -231,7 +231,7 @@ def exec_concurrent(context): # Run exec_page_sync on every page context max_workers = min(len(context.pdfinfo), context.options.jobs) if max_workers > 1: - context.log.info("Start processing %d pages concurrent", max_workers) + context.log.info("Start processing %d pages concurrently", max_workers) # Tesseract 4.x can be multithreaded, and we also run multiple workers. We want # to manage how many threads it uses to avoid creating total threads than cores.