- commit
- 62879d957130b0e9c5851d2818d6f0d9cc28195a
- parent
- 2156c3ddc0496fe076a47576de7b891cea516f84
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2025-02-06 21:01
fix: path.mkdir
Diffstat
M | gitolite/stagit.py | 2 | +- |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitolite/stagit.py b/gitolite/stagit.py
@@ -61,7 +61,7 @@ config = Config() 61 61 def update_repo(repo): 62 62 repodir = get_repo_dir(repo) 63 63 if not repodir.exists():64 -1 repodir.makedirs(parents=True, exist_ok=True)-1 64 repodir.mkdir(parents=True, exist_ok=True) 65 65 subprocess.check_call(['git', 'init', '--bare'], cwd=repodir) 66 66 67 67 export_ok = repodir / 'git-daemon-export-ok'