Merge "install action fails with pip-build directory Bug: 1179747" into stable/folsom

This commit is contained in:
Jenkins 2013-07-23 20:24:23 +00:00 committed by Gerrit Code Review
commit fddd35b1d5
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def uncache():
def _list_installed(pip_how):
cmd = [str(pip_how)] + FREEZE_CMD
(stdout, _stderr) = sh.execute(*cmd)
(stdout, _stderr) = sh.execute(*cmd, run_as_root=True)
installed = []
for line in stdout.splitlines():
line = line.strip()