From 9f6b6cf1a5308308c96997eb12609827929a11c7 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 13 Jan 2015 16:41:58 -0800 Subject: gen_dispatch.py: silence error This script manipulates the python path to get at some modules, because of this pylint gives an error (as opposed to a warning) about not being able to import that module. This patch silences that error. Signed-off-by: Dylan Baker --- tests/util/gen_dispatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/util/gen_dispatch.py b/tests/util/gen_dispatch.py index ea9bba6ac..4d7d756fd 100644 --- a/tests/util/gen_dispatch.py +++ b/tests/util/gen_dispatch.py @@ -38,7 +38,7 @@ import mako.template PIGLIT_TOP_DIR = os.path.join(os.path.dirname(__file__), '..', '..') sys.path.append(PIGLIT_TOP_DIR) -import registry.gl +import registry.gl # pylint: disable=import-error debug = False -- cgit v1.2.3