diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-17 15:24:48 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-17 15:24:48 +0100 |
commit | a1e6234c27abf041e4c8cd1a799950e7cd9104f6 (patch) | |
tree | 3e39fa29ea1478f9a31f378a25bd9c58bb71ed91 /lib/git/config.py | |
parent | b03933057df80ea9f860cc616eb7733f140f866e (diff) | |
download | gitpython-a1e6234c27abf041e4c8cd1a799950e7cd9104f6.tar.gz |
Inital implementation of Submodule.move including a very simple and to-be-improved test
Diffstat (limited to 'lib/git/config.py')
-rw-r--r-- | lib/git/config.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/git/config.py b/lib/git/config.py index 0528f318..f1a8832e 100644 --- a/lib/git/config.py +++ b/lib/git/config.py @@ -91,6 +91,11 @@ class SectionConstraint(object): as first argument""" return getattr(self._config, method)(self._section_name, *args, **kwargs) + @property + def config(self): + """return: Configparser instance we constrain""" + return self._config + class GitConfigParser(cp.RawConfigParser, object): """Implements specifics required to read git style configuration files. |