Skip to content

Commit

Permalink
fix py3.11 issue in gitinterface
Browse files Browse the repository at this point in the history
jedwards4b committed Mar 19, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
addaleax Anna Henningsen
1 parent 78b3154 commit 8242860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_fleximod/gitinterface.py
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ def __init__(self, repo_path, logger):
msg = "Using GitPython interface to git"
except ImportError:
self._use_module = False
if not (repo_path / ".git").exists():
if not (self.repo_path / ".git").exists():
self._init_git_repo()
msg = "Using shell interface to git"
self.logger.info(msg)

0 comments on commit 8242860

Please sign in to comment.