From e0b41ed1f638e0c1092f21790b203147ebe98f4c Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 16 Jan 2022 00:37:12 +0100 Subject: [PATCH] Silence matrix-commander's output --- obs/update_unstable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/update_unstable.py b/obs/update_unstable.py index db8dbc9..ade8b47 100755 --- a/obs/update_unstable.py +++ b/obs/update_unstable.py @@ -178,7 +178,7 @@ def notify_matrix(update_data: Dict[str, List[Tuple[str, str]]]) -> None: cmd = [MATRIX_COMMANDER, "--markdown", "-m", message] logging.debug("Sending Matrix notification") - sarge.run(cmd, stdout=subprocess.DEVNULL) + sarge.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) def commit_changes(cache_file: str, repo_home: str) -> None: