From 55db0fcce5ec5a92d2bdba8702bdfee9a8bca93d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 13 Feb 2016 18:06:48 +0100 Subject: fix(cmd): focus ! Thanks travis, once again ! --- git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/cmd.py') 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 -- cgit v1.2.1