فهرست منبع

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
 
-        path = os.path.join(self._controldir, "config")
+        path = os.path.join(self._commondir, "config")
         try:
             return ConfigFile.from_path(path)
         except FileNotFoundError: