summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2012-10-25 09:51:06 -0700
committerGerrit Code Review <noreply-gerritcodereview@google.com>2012-10-25 09:51:07 -0700
commite4ed8f65f376009f70fab0e7978fdfc223f23a76 (patch)
tree00a9118857c613eefdd967d330bc5230ced01555 /manifest_xml.py
parentfdb44479f8b99e7795021f1b8588a677dcf5fd51 (diff)
parent4f7bdea9d24c4eb52f83ada2b67b88ad67cb57a7 (diff)
downloadgit-repo-e4ed8f65f376009f70fab0e7978fdfc223f23a76.tar.gz
Merge "Add pylint configuration and instructions"
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index a2a56e92..71dbdc7d 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -336,7 +336,7 @@ class XmlManifest(object):
336 raise ManifestParseError("no <manifest> in %s" % (path,)) 336 raise ManifestParseError("no <manifest> in %s" % (path,))
337 337
338 nodes = [] 338 nodes = []
339 for node in manifest.childNodes: # pylint:disable-msg=W0631 339 for node in manifest.childNodes: # pylint:disable=W0631
340 # We only get here if manifest is initialised 340 # We only get here if manifest is initialised
341 if node.nodeName == 'include': 341 if node.nodeName == 'include':
342 name = self._reqatt(node, 'name') 342 name = self._reqatt(node, 'name')