diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2015-01-13 16:41:58 -0800 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2015-01-28 12:08:10 -0800 |
commit | 9f6b6cf1a5308308c96997eb12609827929a11c7 (patch) | |
tree | 89df70345ca35536932596ccc2bf18910cc89e14 /tests | |
parent | 6600aed5ba1281ce2970d5bc9093596ec6edc802 (diff) |
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 <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/util/gen_dispatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |