# HG changeset patch # User Jeff Hammel # Date 1279321256 25200 # Node ID 4d38d14cf1d43b09909185874fcadcb46ef0f48c # Parent 54b30e8f6f82332cb8f85f526692ee40e0b930a3 pass the pipe argument diff -r 54b30e8f6f82 -r 4d38d14cf1d4 gut/main.py --- a/gut/main.py Fri Jul 16 14:47:13 2010 -0700 +++ b/gut/main.py Fri Jul 16 16:00:56 2010 -0700 @@ -80,7 +80,7 @@ def branch(self): """print what branch you're on""" - output = call(['git', 'branch'], output=False) + output = call(['git', 'branch'], output=False, pipe=True) if self.simulate: return for line in output['stdout'].splitlines():