local_run: Do not capture stderr
This commit is contained in:
parent
91401fca14
commit
be28378e9a
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ with open(os.path.join(wd, 'sources.list'), 'w') as f:
|
||||||
p = subprocess.Popen(
|
p = subprocess.Popen(
|
||||||
[sys.executable, os.path.join(project, 'scripts', 'weboob-config'), 'update'],
|
[sys.executable, os.path.join(project, 'scripts', 'weboob-config'), 'update'],
|
||||||
env=env,
|
env=env,
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
stdout=subprocess.PIPE)
|
||||||
s = p.communicate()
|
s = p.communicate()
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
print s[0]
|
print s[0]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue