Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f498de9

Browse files
committedJan 30, 2015
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

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.