From e48e52001d5abad7b28a4ecadde63c78c3946339 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 21 Jan 2015 11:45:32 +0100 Subject: Initial set of documentation improvements, and a fix to the submodule tests. Now travisci tests should work once again. Related to #239 --- 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 80a30410..d6b29d91 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -295,7 +295,7 @@ class Git(LazyMixin): :raise GitCommandError: if the return status is not 0""" status = self.proc.wait() if status != 0: - raise GitCommandError(self.args, status, self.proc.stderr.read().decode(defenc)) + raise GitCommandError(self.args, status, self.proc.stderr.read()) # END status handling return status # END auto interrupt -- cgit v1.2.1