From 2675c3f8b5865edff4fe6ec60187b32deef5041d Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 10 Apr 2009 16:20:25 -0700 Subject: [PATCH] Don't capture stdout during 'repo checkout' There isn't any great value in buffering stdout into memory coming from git checkout. So don't bother doing it. Signed-off-by: Shawn O. Pearce --- project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.py b/project.py index 4f560bd6..48ab8475 100644 --- a/project.py +++ b/project.py @@ -771,7 +771,7 @@ class Project(object): # Do the checkout cmd = ['checkout', name, '--'] - return GitCommand(self, cmd, capture_stdout=True).Wait() == 0 + return GitCommand(self, cmd).Wait() == 0 def AbandonBranch(self, name): """Destroy a local topic branch.