瀏覽代碼

Use ConfigParser for now

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.

.
Jelmer Vernooij 15 年之前
父節點
當前提交
dc2ee9c6b7
共有 2 個文件被更改,包括 6 次插入3 次删除
  1. 1 1
      NEWS
  2. 5 2
      dulwich/repo.py

+ 1 - 1
NEWS

@@ -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)
 

+ 5 - 2
dulwich/repo.py

@@ -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)