From 4e99d9ab2acfaf2ebb4b150736590d6a4e33f449 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 5 Nov 2009 20:36:05 +0100 Subject: Fixed config module which forgot to call the superclass's initializer, finally causing failure in python 2.6 --- lib/git/config.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/git/config.py') 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() -- cgit v1.2.1