Browse Source

use commondir rather than controldir for configs

Jesse Cureton 3 years ago
parent
commit
1d4c5c1ff9
1 changed files with 1 additions and 1 deletions
  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: