Skip to content

Commit f498de9

Browse files
committed
Remote.update() didn't pass kwargs along to git command.
Fixes gitpython-developers#250
1 parent 4df4159 commit f498de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/remote.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def update(self, **kwargs):
517517
Additional arguments passed to git-remote update
518518
519519
:return: self """
520-
self.repo.git.remote("update", self.name)
520+
self.repo.git.remote("update", self.name, **kwargs)
521521
return self
522522

523523
def _get_fetch_info_from_stderr(self, proc, progress):

0 commit comments

Comments
 (0)