瀏覽代碼

Use ConfigParser.read_file if available.

Jelmer Vernooij 8 年之前
父節點
當前提交
4b93fbdc0a
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      dulwich/contrib/swift.py

+ 5 - 1
dulwich/contrib/swift.py

@@ -172,7 +172,11 @@ def load_conf(path=None, file=None):
     """
     conf = ConfigParser()
     if file:
-        conf.readfp(file)
+        try:
+            conf.read_file(file, path)
+        except AttributeError:
+            # read_file only exists in Python3
+            conf.readfp(file)
         return conf
     confpath = None
     if not path: