summaryrefslogtreecommitdiff
path: root/git/repo
diff options
context:
space:
mode:
authorSam Bull <fox_qwluwc@TrashMail.net>2017-10-30 19:45:01 +0000
committerGitHub <noreply@github.com>2017-10-30 19:45:01 +0000
commit67648785d743c4fdfaa49769ba8159fcde1f10a8 (patch)
tree6e2d34910ae31d09d72954d3c91ef21b4de04624 /git/repo
parent8503a11eb470c82181a9bd12ccebf5b3443c3e40 (diff)
downloadgitpython-67648785d743c4fdfaa49769ba8159fcde1f10a8.tar.gz
Update base.py
Diffstat (limited to 'git/repo')
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 9ed3f714..4cc3589d 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -920,7 +920,7 @@ class Repo(object):
proc = git.clone(Git.polish_url(url), clone_path, with_extended_output=True, as_process=True,
v=True, **add_progress(kwargs, git, progress))
if progress:
- handle_process_output(proc, None, progress.new_message_handler(), finalize_process)
+ handle_process_output(proc, None, progress.new_message_handler(), finalize_process, decode_streams=False)
else:
(stdout, stderr) = proc.communicate()
log.debug("Cmd(%s)'s unused stdout: %s", getattr(proc, 'args', ''), stdout)