From 4360b2582309c99306476140b302ab82e8158cda Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Sat, 25 Mar 2023 18:01:46 +0100 Subject: suppress hittekaart standard output Otherwise it'll show progress bars. --- fietsboek/hittekaart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fietsboek/hittekaart.py b/fietsboek/hittekaart.py index f580c51..a41f8b7 100644 --- a/fietsboek/hittekaart.py +++ b/fietsboek/hittekaart.py @@ -72,7 +72,7 @@ def generate( ] cmdline.extend(map(str, input_files)) LOGGER.debug("Running %r", cmdline) - subprocess.run(cmdline, check=True) + subprocess.run(cmdline, check=True, stdout=subprocess.DEVNULL) LOGGER.debug("Moving temporary file") shutil.move(tmpfile, output) -- cgit v1.2.3