浏览代码

use commondir rather than controldir for configs

Jesse Cureton 3 年之前
父节点
当前提交
1d4c5c1ff9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -1517,7 +1517,7 @@ class Repo(BaseRepo):
         """
         """
         from dulwich.config import ConfigFile
         from dulwich.config import ConfigFile
 
 
-        path = os.path.join(self._controldir, "config")
+        path = os.path.join(self._commondir, "config")
         try:
         try:
             return ConfigFile.from_path(path)
             return ConfigFile.from_path(path)
         except FileNotFoundError:
         except FileNotFoundError: