1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-08 05:09:56 +00:00

arm/lib/oeqa: fix module lookup

As multiple paths can and do provide modules under oeqa.controllers, all
of these paths need to call pkgutil.extend_path() so the lookup works
correctly.

Signed-off-by: Ross Burton <ross.burton@arm.com>
This commit is contained in:
Ross Burton
2021-10-20 13:43:47 +01:00
parent 0b2b50b54a
commit ee8d20ab2b
@@ -0,0 +1,3 @@
# This is needed so that multiple locations can provide the same package
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)