summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-21 11:45:32 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-21 11:45:32 +0100
commite48e52001d5abad7b28a4ecadde63c78c3946339 (patch)
tree2f3a3b274f7e4d782bfd9ebbbbd42f2d71e2830b /git/cmd.py
parentc3c6c81b3281333a5a1152f667c187c9dce12944 (diff)
downloadgitpython-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.py2
1 files changed, 1 insertions, 1 deletions
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