summaryrefslogtreecommitdiff
path: root/git/remote.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-02-07 12:01:12 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-02-07 12:01:12 +0100
commit9b10d5e75570ac6325d1c7e2b32882112330359a (patch)
treef105b9dce31afed30101954ab11c56a15fe48e13 /git/remote.py
parentb145de39700001d91662404221609b86d2c659d0 (diff)
downloadgitpython-9b10d5e75570ac6325d1c7e2b32882112330359a.tar.gz
chore(flake8): unnused import
Diffstat (limited to 'git/remote.py')
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index 9bff5027..c1969768 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -650,7 +650,7 @@ class Remote(LazyMixin, Iterable):
else:
args = [refspec]
- proc = self.repo.git.fetch(self, *args, with_extended_output=True, as_process=True, with_stdout=True, v=True,
+ proc = self.repo.git.fetch(self, *args, with_extended_output=True, as_process=True, with_stdout=False, v=True,
**kwargs)
res = self._get_fetch_info_from_stderr(proc, progress or RemoteProgress())
if hasattr(self.repo.odb, 'update_cache'):