summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-02-13 18:06:48 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-02-13 18:06:48 +0100
commit55db0fcce5ec5a92d2bdba8702bdfee9a8bca93d (patch)
tree9ef25d3f16a3b31396a3149041a330575e24d2d4
parentd2f6fef3c887719a250c78c22cba723b2200df1b (diff)
downloadgitpython-55db0fcce5ec5a92d2bdba8702bdfee9a8bca93d.tar.gz
fix(cmd): focus !
Thanks travis, once again !
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index d2794c02..33c15da6 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -323,7 +323,7 @@ class Git(LazyMixin):
return ''
if status != 0:
- errstr = read_all_from_possibly_closed_stream(self.proc.stderr.read)
+ errstr = read_all_from_possibly_closed_stream(self.proc.stderr)
raise GitCommandError(self.args, status, errstr)
# END status handling
return status