aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-07-21 11:50:59 +0300
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-07-21 11:55:32 +0300
commit30807ac16ff63a3084e4da60bd90b2c3b193ef24 (patch)
tree1ba24411508b162f3e68d4043eaca1439260fa74
parentc80ce126469ea6aafafbca232f63a455532942eb (diff)
bootstrap: disable one anomalous pylint err
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
-rwxr-xr-xbootstrap.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py
index cf6f6cb..e7f14a4 100755
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -31,6 +31,10 @@ import tempfile
from tests.component.rpm import RepoManifest
+# Disable "Instance of 'Document' has no 'firstChild' member"
+# pylint: disable=E1103
+
+
LOG = logging.getLogger(os.path.basename(sys.argv[0]))
TEST_PKGS = {'gbp-test-native': {'build_branches': ['master'],
'export_branches': ['master']},