From a964080f77b73e61f744fc9d4c8567f0be1bcbe8 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Thu, 27 May 2021 13:42:05 -0700 Subject: [PATCH] validation: a word --- src/ocrmypdf/_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ocrmypdf/_validation.py b/src/ocrmypdf/_validation.py index caabc513..14768481 100644 --- a/src/ocrmypdf/_validation.py +++ b/src/ocrmypdf/_validation.py @@ -279,7 +279,7 @@ def check_closed_streams(options): # pragma: no cover Attempting to a fork/exec a new Python process when any of std{in,out,err} are closed or not flushable for some reason may raise an exception. Fix this by opening devnull if the handle seems to be closed. Do this - globally to avoid tracking places all places that fork. + globally to avoid tracking all places that fork. Seems to be specific to multiprocessing.Process not all Python process forkers.