summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index 1300e916..c44b9c5e 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -345,7 +345,8 @@ class XmlManifest(object):
345 for local_file in sorted(os.listdir(local_dir)): 345 for local_file in sorted(os.listdir(local_dir)):
346 if local_file.endswith('.xml'): 346 if local_file.endswith('.xml'):
347 try: 347 try:
348 nodes.append(self._ParseManifestXml(local_file, self.repodir)) 348 local = os.path.join(local_dir, local_file)
349 nodes.append(self._ParseManifestXml(local, self.repodir))
349 except ManifestParseError as e: 350 except ManifestParseError as e:
350 print('%s' % str(e), file=sys.stderr) 351 print('%s' % str(e), file=sys.stderr)
351 except OSError: 352 except OSError: