From 1b473b1ab02b7487975018d9863221e4a067baa2 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sun, 19 Jan 2020 15:14:03 -0700 Subject: [PATCH] Fix pipes when run from hw-diags --- scripts/wk/hw/diags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wk/hw/diags.py b/scripts/wk/hw/diags.py index 40b84e2e..9925dd27 100644 --- a/scripts/wk/hw/diags.py +++ b/scripts/wk/hw/diags.py @@ -1285,7 +1285,7 @@ def screensaver(name): # Switch pane to fullscreen and start screensaver tmux.zoom_pane() - exe.run_program(cmd, check=False, pipe=False) + exe.run_program(cmd, check=False, pipe=False, stderr=subprocess.PIPE) tmux.zoom_pane()