diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 05:46:50 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 17:13:34 +0200 |
commit | 44c6d0b368bc1ec6cd0a97b01678b38788c9bd9c (patch) | |
tree | ad44c36bf3527711f4dec4417f465af8ef2b5308 /git/remote.py | |
parent | f11fdf1d9d22a198511b02f3ca90146cfa5deb5c (diff) | |
download | gitpython-44c6d0b368bc1ec6cd0a97b01678b38788c9bd9c.tar.gz |
Proc, #519: Rework error-exc msgs & log thread-pumps errors
+ No WindowsError exception.
+ Add `test_exc.py` for unicode issues.
+ Single-arg for decoding-streams in pump-func.
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/remote.py b/git/remote.py index 07f5b432..58238991 100644 --- a/git/remote.py +++ b/git/remote.py @@ -681,8 +681,7 @@ class Remote(LazyMixin, Iterable): # END for each line try: - handle_process_output(proc, stdout_handler, progress_handler, finalize_process, - decode_stdout=False, decode_stderr=False) + handle_process_output(proc, stdout_handler, progress_handler, finalize_process, decode_streams=False) except Exception: if len(output) == 0: raise |