diff options
-rw-r--r-- | fietsboek/hittekaart.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |