From 4f7bdea9d24c4eb52f83ada2b67b88ad67cb57a7 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Mon, 22 Oct 2012 12:50:15 +0900 Subject: Add pylint configuration and instructions pylint configuration file (.pylintrc) is added, and submission instructions are updated to include pylint usage steps. Deprecated pylint suppression (`disable-msg`) is updated in a few modules to make it work properly with the latest version (0.26). Change-Id: I4ec2ef318e23557a374ecdbf40fe12645766830c --- 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 a2a56e92..71dbdc7d 100644 --- a/manifest_xml.py +++ b/manifest_xml.py @@ -336,7 +336,7 @@ class XmlManifest(object): raise ManifestParseError("no in %s" % (path,)) nodes = [] - for node in manifest.childNodes: # pylint:disable-msg=W0631 + for node in manifest.childNodes: # pylint:disable=W0631 # We only get here if manifest is initialised if node.nodeName == 'include': name = self._reqatt(node, 'name') -- cgit v1.2.3-54-g00ecf