From a38a0053d31d0285dd1e6ebe6efc28726a9656cc Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 16 Dec 2009 13:59:09 +0100 Subject: Added imports for standard locking file classes into the git module --- lib/git/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/remote.py') 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): -- cgit v1.2.1