From be28378e9a890ae3589ea5d4f94b2efda60d729e Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Tue, 9 Apr 2013 22:30:38 +0200 Subject: [PATCH] local_run: Do not capture stderr --- tools/local_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/local_run.py b/tools/local_run.py index 4c2ed5fe..14c60ad6 100644 --- a/tools/local_run.py +++ b/tools/local_run.py @@ -28,7 +28,7 @@ with open(os.path.join(wd, 'sources.list'), 'w') as f: p = subprocess.Popen( [sys.executable, os.path.join(project, 'scripts', 'weboob-config'), 'update'], env=env, - stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + stdout=subprocess.PIPE) s = p.communicate() if p.returncode != 0: print s[0]