diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-02-13 18:06:48 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-02-13 18:06:48 +0100 |
commit | 55db0fcce5ec5a92d2bdba8702bdfee9a8bca93d (patch) | |
tree | 9ef25d3f16a3b31396a3149041a330575e24d2d4 | |
parent | d2f6fef3c887719a250c78c22cba723b2200df1b (diff) | |
download | gitpython-55db0fcce5ec5a92d2bdba8702bdfee9a8bca93d.tar.gz |
fix(cmd): focus !
Thanks travis, once again !
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |