summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--manifest_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index 73e34964..4f0eb64d 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -164,7 +164,7 @@ class XmlManifest(object):
164 try: 164 try:
165 if os.path.lexists(self.manifestFile): 165 if os.path.lexists(self.manifestFile):
166 os.remove(self.manifestFile) 166 os.remove(self.manifestFile)
167 os.symlink('manifests/%s' % name, self.manifestFile) 167 os.symlink(os.path.join('manifests', name), self.manifestFile)
168 except OSError as e: 168 except OSError as e:
169 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e))) 169 raise ManifestParseError('cannot link manifest %s: %s' % (name, str(e)))
170 170