From 9944d6956722e69124586f17c38fbb8b5fcc0ba1 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 20 Oct 2021 13:48:31 +0100 Subject: [PATCH] lib/oeqa/controllers: extend search path When multiple locations can provide modules in the same package, the search path needs to be extended with pkgutil.extend_path. Otherwise the search will end early and not iterate through each of the providers. Signed-off-by: Ross Burton Signed-off-by: Naveen Saini --- lib/oeqa/controllers/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/oeqa/controllers/__init__.py b/lib/oeqa/controllers/__init__.py index e69de29..df3c142 100644 --- a/lib/oeqa/controllers/__init__.py +++ b/lib/oeqa/controllers/__init__.py @@ -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__)