diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-07-03 16:43:51 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-07-03 16:43:51 +0200 |
commit | 9db24bc7a617cf93321bb60de6af2a20efd6afc1 (patch) | |
tree | 30cd36340d09929ba09cb3bead45bbcdcc412327 /git/remote.py | |
parent | 86ec7573a87cd8136d7d497b99594f29e17406d3 (diff) | |
download | gitpython-9db24bc7a617cf93321bb60de6af2a20efd6afc1.tar.gz |
fix(cmd): work with py3
Fixed additional test which seems to have different outcomes depending
on the interpreter. This just makes it work withouth attempting
to find the root cause of the issue.
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/remote.py b/git/remote.py index 7cb0f4f8..00d95b3c 100644 --- a/git/remote.py +++ b/git/remote.py @@ -551,6 +551,7 @@ class Remote(LazyMixin, Iterable): progress_handler = progress.new_message_handler() for line in proc.stderr.readlines(): + line = line.decode(defenc) for pline in progress_handler(line): if line.startswith('fatal:') or line.startswith('error:'): raise GitCommandError(("Error when fetching: %s" % line,), 2) |