diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-30 05:49:18 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-30 05:49:18 +0100 |
commit | f498de9bfd67bcbb42d36dfb8ff9e59ec788825b (patch) | |
tree | 5515fc0e76a1df627d25910e2082bd0c63edcdb2 /git/remote.py | |
parent | 4df4159413a4bf30a891f21cd69202e8746c8fea (diff) | |
download | gitpython-f498de9bfd67bcbb42d36dfb8ff9e59ec788825b.tar.gz |
Remote.update() didn't pass kwargs along to git command.
Fixes #250
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 d048f87b..2267c203 100644 --- a/git/remote.py +++ b/git/remote.py @@ -517,7 +517,7 @@ class Remote(LazyMixin, Iterable): Additional arguments passed to git-remote update :return: self """ - self.repo.git.remote("update", self.name) + self.repo.git.remote("update", self.name, **kwargs) return self def _get_fetch_info_from_stderr(self, proc, progress): |