From 28ba634e6acb82f56b0674536d6e5ff6e08e37a7 Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Tue, 3 Nov 2020 14:04:21 +0100 Subject: [PATCH] silenced unpaper once and for all --- src/documents/parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/parsers.py b/src/documents/parsers.py index 60ad5cd7d..0cbd13987 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -90,7 +90,7 @@ def run_unpaper(pnm, logging_group=None): logger.debug("Execute: " + " ".join(command_args), extra={'group': logging_group}) - if not subprocess.Popen(command_args).wait() == 0: + if not subprocess.Popen(command_args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).wait() == 0: raise ParseError("Unpaper failed at {}".format(command_args)) return pnm_out