@@ -894,7 +894,7 @@ def _get_fetch_info_from_stderr(
894
894
None ,
895
895
progress_handler ,
896
896
finalizer = None ,
897
- decode_streams = True ,
897
+ decode_streams = False ,
898
898
kill_after_timeout = kill_after_timeout ,
899
899
)
900
900
@@ -1071,7 +1071,7 @@ def fetch(
1071
1071
Git .check_unsafe_options (options = list (kwargs .keys ()), unsafe_options = self .unsafe_git_fetch_options )
1072
1072
1073
1073
proc = self .repo .git .fetch (
1074
- "--" , self , * args , as_process = True , with_stdout = False , universal_newlines = False , v = verbose , ** kwargs
1074
+ "--" , self , * args , as_process = True , with_stdout = False , universal_newlines = True , v = verbose , ** kwargs
1075
1075
)
1076
1076
res = self ._get_fetch_info_from_stderr (proc , progress , kill_after_timeout = kill_after_timeout )
1077
1077
if hasattr (self .repo .odb , "update_cache" ):
@@ -1125,7 +1125,7 @@ def pull(
1125
1125
Git .check_unsafe_options (options = list (kwargs .keys ()), unsafe_options = self .unsafe_git_pull_options )
1126
1126
1127
1127
proc = self .repo .git .pull (
1128
- "--" , self , refspec , with_stdout = False , as_process = True , universal_newlines = False , v = True , ** kwargs
1128
+ "--" , self , refspec , with_stdout = False , as_process = True , universal_newlines = True , v = True , ** kwargs
1129
1129
)
1130
1130
res = self ._get_fetch_info_from_stderr (proc , progress , kill_after_timeout = kill_after_timeout )
1131
1131
if hasattr (self .repo .odb , "update_cache" ):
0 commit comments