From b0f9a02394779c1c9422a9649412c9ac5fb0f12f Mon Sep 17 00:00:00 2001 From: Anthony Newnam Date: Mon, 29 Nov 2010 13:15:24 -0600 Subject: Make path references OS independent Change-Id: I5573995adfd52fd54bddc62d1d1ea78fb1328130 --- manifest_xml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifest_xml.py') diff --git a/manifest_xml.py b/manifest_xml.py index d888653d..35318d0a 100644 --- a/manifest_xml.py +++ b/manifest_xml.py @@ -357,7 +357,7 @@ class XmlManifest(Manifest): worktree = None gitdir = os.path.join(self.topdir, '%s.git' % name) else: - worktree = os.path.join(self.topdir, path) + worktree = os.path.join(self.topdir, path).replace('\\', '/') gitdir = os.path.join(self.repodir, 'projects/%s.git' % path) project = Project(manifest = self, -- cgit v1.2.3-54-g00ecf