diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-20 10:45:40 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-20 10:45:40 +0200 |
commit | dd76b9e72b21d2502a51e3605e5e6ab640e5f0bd (patch) | |
tree | af85f25dd2f3b1947177f8f2f7cfc4b8a08e1a2d /lib/git/remote.py | |
parent | aa5e366889103172a9829730de1ba26d3dcbc01b (diff) | |
download | gitpython-dd76b9e72b21d2502a51e3605e5e6ab640e5f0bd.tar.gz |
Fixed bare repository handling - bare is now a property to prevent writing it
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 e043e6db..6a9c0efb 100644 --- a/lib/git/remote.py +++ b/lib/git/remote.py @@ -77,7 +77,7 @@ class Remote(LazyMixin, Iterable): def _set_cache_(self, attr): if attr == "_config_reader": - self._config_reader = _SectionConstraint(self.repo.config_reader, self._config_section_name()) + self._config_reader = _SectionConstraint(self.repo.config_reader(), self._config_section_name()) else: super(Remote, self)._set_cache_(attr) |