summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index e0bd9c10..4a601f87 100644
--- a/project.py
+++ b/project.py
@@ -626,7 +626,7 @@ class Project(object):
626 self.gitdir = gitdir.replace('\\', '/') 626 self.gitdir = gitdir.replace('\\', '/')
627 self.objdir = objdir.replace('\\', '/') 627 self.objdir = objdir.replace('\\', '/')
628 if worktree: 628 if worktree:
629 self.worktree = worktree.replace('\\', '/') 629 self.worktree = os.path.normpath(worktree.replace('\\', '/'))
630 else: 630 else:
631 self.worktree = None 631 self.worktree = None
632 self.relpath = relpath 632 self.relpath = relpath