Skip to content

Commit 55db0fc

Browse files
committed
fix(cmd): focus !
Thanks travis, once again !
1 parent d2f6fef commit 55db0fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: git/cmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def read_all_from_possibly_closed_stream(stream):
323323
return ''
324324

325325
if status != 0:
326-
errstr = read_all_from_possibly_closed_stream(self.proc.stderr.read)
326+
errstr = read_all_from_possibly_closed_stream(self.proc.stderr)
327327
raise GitCommandError(self.args, status, errstr)
328328
# END status handling
329329
return status

0 commit comments

Comments
 (0)