ConfigParser is included in Python's standard library and ConfigObj doesn't generate git-compatible files anyway. We'll need a custom parser at some point. .
@@ -20,7 +20,7 @@
* --pure option to setup.py to allow building/installing without the C
extensions. (Hal Wine, Anatoly Techtonik, Jelmer Vernooij, #434326)
- * Implement Repo.get_config(). (Jelmer Vernooij)
+ * Implement Repo.get_config(). (Jelmer Vernooij, Augie Fackler)
* HTTP dumb and smart server. (Dave Borowitz)
@@ -671,8 +671,11 @@ class BaseRepo(object):
return self.commit(sha).parents
def get_config(self):
- from configobj import ConfigObj
- return ConfigObj(os.path.join(self._controldir, 'config'))
+ import ConfigParser
+ p = ConfigParser.RawConfigParser()
+ p.read(os.path.join(self._controldir, 'config'))
+ return dict((section, dict(p.items(section)))
+ for section in p.sections())
def commit(self, sha):
return self._get_object(sha, Commit)