From: Ricardo Dias Date: Mon, 26 Mar 2018 14:56:01 +0000 (+0100) Subject: mgr/smart: fix python3 module loading X-Git-Tag: v13.1.0~497^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d91a620ab329f822f74fab521092cb236e1b774e;p=ceph.git mgr/smart: fix python3 module loading Signed-off-by: Ricardo Dias --- diff --git a/src/pybind/mgr/smart/__init__.py b/src/pybind/mgr/smart/__init__.py index 79f5b86fd504..4c5b97ce82b2 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