@@ -786,8 +786,7 @@ def fetch(self, refspec=None, progress=None, **kwargs):
786
786
else :
787
787
args = [refspec ]
788
788
789
- proc = self .repo .git .fetch (self , * args , as_process = True , with_stdout = False ,
790
- universal_newlines = True , v = True , ** kwargs )
789
+ proc = self .repo .git .fetch (self , * args , as_process = True , with_stdout = False , v = True , ** kwargs )
791
790
res = self ._get_fetch_info_from_stderr (proc , progress )
792
791
if hasattr (self .repo .odb , 'update_cache' ):
793
792
self .repo .odb .update_cache ()
@@ -805,8 +804,7 @@ def pull(self, refspec=None, progress=None, **kwargs):
805
804
# No argument refspec, then ensure the repo's config has a fetch refspec.
806
805
self ._assert_refspec ()
807
806
kwargs = add_progress (kwargs , self .repo .git , progress )
808
- proc = self .repo .git .pull (self , refspec , with_stdout = False , as_process = True ,
809
- universal_newlines = True , v = True , ** kwargs )
807
+ proc = self .repo .git .pull (self , refspec , with_stdout = False , as_process = True , v = True , ** kwargs )
810
808
res = self ._get_fetch_info_from_stderr (proc , progress )
811
809
if hasattr (self .repo .odb , 'update_cache' ):
812
810
self .repo .odb .update_cache ()
@@ -840,8 +838,7 @@ def push(self, refspec=None, progress=None, **kwargs):
840
838
If the operation fails completely, the length of the returned IterableList will
841
839
be null."""
842
840
kwargs = add_progress (kwargs , self .repo .git , progress )
843
- proc = self .repo .git .push (self , refspec , porcelain = True , as_process = True ,
844
- universal_newlines = True , ** kwargs )
841
+ proc = self .repo .git .push (self , refspec , porcelain = True , as_process = True , ** kwargs )
845
842
return self ._get_push_info (proc , progress )
846
843
847
844
@property
0 commit comments