From d91a620ab329f822f74fab521092cb236e1b774e Mon Sep 17 00:00:00 2001 From: Ricardo Dias Date: Mon, 26 Mar 2018 15:56:01 +0100 Subject: [PATCH] mgr/smart: fix python3 module loading Signed-off-by: Ricardo Dias --- src/pybind/mgr/smart/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/smart/__init__.py b/src/pybind/mgr/smart/__init__.py index 79f5b86fd50..4c5b97ce82b 100644 --- a/src/pybind/mgr/smart/__init__.py +++ b/src/pybind/mgr/smart/__init__.py @@ -1,2 +1,2 @@ -from module import * # NOQA +from .module import Module -- 2.39.5