diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-21 11:45:32 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-21 11:45:32 +0100 |
commit | e48e52001d5abad7b28a4ecadde63c78c3946339 (patch) | |
tree | 2f3a3b274f7e4d782bfd9ebbbbd42f2d71e2830b /git/cmd.py | |
parent | c3c6c81b3281333a5a1152f667c187c9dce12944 (diff) | |
download | gitpython-e48e52001d5abad7b28a4ecadde63c78c3946339.tar.gz |
Initial set of documentation improvements, and a fix to the submodule tests.
Now travisci tests should work once again.
Related to #239
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |