From 024770dc2f36b1c60cc2a4b98325ab73b1cd497e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Thu, 8 Feb 2018 10:18:49 +0100 Subject: [PATCH] Redirect update stderr. --- tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester.py b/tester.py index 650abef8..627a4590 100755 --- a/tester.py +++ b/tester.py @@ -123,7 +123,7 @@ class Tester(): if '-n' not in args: tester_path = os.path.join(root_dir, os.path.basename(__file__)) mtime = os.path.getmtime(tester_path) - subprocess.call(['python3', 'update_envsetup.py']) + subprocess.call(['python3', 'update_envsetup.py'], stderr=subprocess.STDOUT) if mtime != os.path.getmtime(tester_path): log('The script has changed, restarting it...') os.execl('/bin/python3', 'python3', tester_path, '-n', *args) -- GitLab