diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-12-16 13:59:09 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-12-16 23:05:21 +0100 |
commit | a38a0053d31d0285dd1e6ebe6efc28726a9656cc (patch) | |
tree | b789854ad84b490611c6ee93b95eb3b13d827154 /lib/git/remote.py | |
parent | 697702e72c4b148e987b873e6094da081beeb7cf (diff) | |
download | gitpython-a38a0053d31d0285dd1e6ebe6efc28726a9656cc.tar.gz |
Added imports for standard locking file classes into the git module
Diffstat (limited to 'lib/git/remote.py')
-rw-r--r-- | lib/git/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/remote.py b/lib/git/remote.py index 1e2e42fa..dc70309b 100644 --- a/lib/git/remote.py +++ b/lib/git/remote.py @@ -29,7 +29,7 @@ class _SectionConstraint(object): def __getattr__(self, attr): if attr in self._valid_attrs_: - return lambda *args: self._call_config(attr, *args) + return lambda *args, **kwargs: self._call_config(attr, *args, **kwargs) return super(_SectionConstraint,self).__getattribute__(attr) def _call_config(self, method, *args, **kwargs): |