summaryrefslogtreecommitdiff
path: root/lib/git_python/git.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-05-07 23:29:13 -0400
committerMichael Trier <mtrier@gmail.com>2008-05-07 23:29:13 -0400
commit6383196b7bb0773c0083a2a3d49a95e5479715bf (patch)
tree9d4f2507a4eacd98fb17d427567b9565a74f7295 /lib/git_python/git.py
parent9066712dca21ef35c534e068f2cc4fefdccf1ea3 (diff)
downloadgitpython-6383196b7bb0773c0083a2a3d49a95e5479715bf.tar.gz
More small changes to tests. Commented out tests not passing because of inability to figure out mocking for them.
Diffstat (limited to 'lib/git_python/git.py')
-rw-r--r--lib/git_python/git.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/git_python/git.py b/lib/git_python/git.py
index 4d7063f4..ad08bb20 100644
--- a/lib/git_python/git.py
+++ b/lib/git_python/git.py
@@ -28,8 +28,7 @@ class Git(MethodMissingMixin):
"""
proc = subprocess.Popen(command,
shell=True,
- stdout=subprocess.PIPE,
- stderr=subprocess.STDOUT
+ stdout=subprocess.PIPE
)
stdout_value = proc.communicate()[0]
return stdout_value