| Index: gclient_scm.py
|
| diff --git a/gclient_scm.py b/gclient_scm.py
|
| index 93249ffff54277e5ca29c3e2bd88fce4dfbda883..fd135e2fec7996b0ede4a1aa6cae27352fefc8f2 100644
|
| --- a/gclient_scm.py
|
| +++ b/gclient_scm.py
|
| @@ -653,7 +653,7 @@ class GitWrapper(SCMWrapper):
|
| cmd.extend(args)
|
| logging.debug(cmd)
|
| try:
|
| - sp = subprocess.Popen(cmd, cwd=cwd, stdout=stdout)
|
| + sp = gclient_utils.Popen(cmd, cwd=cwd, stdout=stdout)
|
| output = sp.communicate()[0]
|
| except OSError:
|
| raise gclient_utils.Error("git command '%s' failed to run." %
|
|
|