diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-11-05 20:36:05 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-11-05 20:36:05 +0100 |
commit | 4e99d9ab2acfaf2ebb4b150736590d6a4e33f449 (patch) | |
tree | 3428d782ea3657e08b5c1eb901e19f52f428f221 /lib/git/config.py | |
parent | d9671e15703918048982c9ff4e2e0fef21ede320 (diff) | |
download | gitpython-4e99d9ab2acfaf2ebb4b150736590d6a4e33f449.tar.gz |
Fixed config module which forgot to call the superclass's initializer, finally causing failure in python 2.6
Diffstat (limited to 'lib/git/config.py')
-rw-r--r-- | lib/git/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/config.py b/lib/git/config.py index ccfbae48..bf4c6469 100644 --- a/lib/git/config.py +++ b/lib/git/config.py @@ -116,6 +116,7 @@ class GitConfigParser(cp.RawConfigParser, LockFile): If True, the ConfigParser may only read the data , but not change it. If False, only a single file path or file object may be given. """ + super(GitConfigParser, self).__init__() # initialize base with ordered dictionaries to be sure we write the same # file back self._sections = OrderedDict() |