diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 14:43:47 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 17:13:22 +0200 |
commit | f11fdf1d9d22a198511b02f3ca90146cfa5deb5c (patch) | |
tree | b8b902a555a6626294bd9388ff1bef11abef39e3 /git/remote.py | |
parent | cf2335af23fb693549d6c4e72b65f97afddc5f64 (diff) | |
download | gitpython-f11fdf1d9d22a198511b02f3ca90146cfa5deb5c.tar.gz |
remote, #519: FIX1-of-2 double-decoding push-infos
+ When `universal_lines==True` (515a6b9ccf8) must tel
`handle_process_output` to stop decoding strings.
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py index 7a7b4840..07f5b432 100644 --- a/git/remote.py +++ b/git/remote.py @@ -681,7 +681,8 @@ class Remote(LazyMixin, Iterable): # END for each line try: - handle_process_output(proc, stdout_handler, progress_handler, finalize_process) + handle_process_output(proc, stdout_handler, progress_handler, finalize_process, + decode_stdout=False, decode_stderr=False) except Exception: if len(output) == 0: raise |