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, 1 insertions, 2 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index d0211eaf..81a6a858 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -483,8 +483,7 @@ class XmlManifest(object):
483 raise ManifestParseError("no <manifest> in %s" % (path,)) 483 raise ManifestParseError("no <manifest> in %s" % (path,))
484 484
485 nodes = [] 485 nodes = []
486 for node in manifest.childNodes: # pylint:disable=W0631 486 for node in manifest.childNodes:
487 # We only get here if manifest is initialised
488 if node.nodeName == 'include': 487 if node.nodeName == 'include':
489 name = self._reqatt(node, 'name') 488 name = self._reqatt(node, 'name')
490 fp = os.path.join(include_root, name) 489 fp = os.path.join(include_root, name)