diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-02-07 12:01:12 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-02-07 12:01:12 +0100 |
commit | 9b10d5e75570ac6325d1c7e2b32882112330359a (patch) | |
tree | f105b9dce31afed30101954ab11c56a15fe48e13 /git/remote.py | |
parent | b145de39700001d91662404221609b86d2c659d0 (diff) | |
download | gitpython-9b10d5e75570ac6325d1c7e2b32882112330359a.tar.gz |
chore(flake8): unnused import
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 2 |
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'): |