We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d63328 commit bfdc8e2Copy full SHA for bfdc8e2
lib/git/repo.py
@@ -44,7 +44,8 @@ def __init__(self, path=None):
44
while curpath:
45
if is_git_dir(curpath):
46
self.bare = True
47
- self.path, self.wd = curpath
+ self.path = curpath
48
+ self.wd = curpath
49
break
50
gitpath = os.path.join(curpath, '.git')
51
if is_git_dir(gitpath):
0 commit comments