diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 9d68f09f..0103cf55 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -435,7 +435,7 @@ class XmlManifest(object): | |||
435 | worktree = None | 435 | worktree = None |
436 | gitdir = os.path.join(self.topdir, '%s.git' % name) | 436 | gitdir = os.path.join(self.topdir, '%s.git' % name) |
437 | else: | 437 | else: |
438 | worktree = os.path.join(self.topdir, path) | 438 | worktree = os.path.join(self.topdir, path).replace('\\', '/') |
439 | gitdir = os.path.join(self.repodir, 'projects/%s.git' % path) | 439 | gitdir = os.path.join(self.repodir, 'projects/%s.git' % path) |
440 | 440 | ||
441 | project = Project(manifest = self, | 441 | project = Project(manifest = self, |