From: Alfredo Deza Date: Tue, 3 Oct 2017 20:17:08 +0000 (-0400) Subject: ceph-volume devices.lvm refactor importing api to come from api/lvm.py X-Git-Tag: v13.0.1~679^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f4bee6cb42a017abce269ed3926deff04038a47e;p=ceph.git ceph-volume devices.lvm refactor importing api to come from api/lvm.py Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/activate.py b/src/ceph-volume/ceph_volume/devices/lvm/activate.py index 5a755672a95d..b292b89af865 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/activate.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/activate.py @@ -4,7 +4,7 @@ from textwrap import dedent from ceph_volume import process, conf, decorators from ceph_volume.util import system, disk from ceph_volume.systemd import systemctl -from . import api +from ceph_volume.api import lvm as api def activate_filestore(lvs): diff --git a/src/ceph-volume/ceph_volume/devices/lvm/listing.py b/src/ceph-volume/ceph_volume/devices/lvm/listing.py index 4f2805e715eb..a063770cacae 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/listing.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/listing.py @@ -5,7 +5,7 @@ import logging from textwrap import dedent from ceph_volume import decorators from ceph_volume.util import disk -from . import api +from ceph_volume.api import lvm as api logger = logging.getLogger(__name__) diff --git a/src/ceph-volume/ceph_volume/devices/lvm/prepare.py b/src/ceph-volume/ceph_volume/devices/lvm/prepare.py index 85a43ca583b7..b69c519bb06b 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/prepare.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/prepare.py @@ -5,7 +5,7 @@ from textwrap import dedent from ceph_volume.util import prepare as prepare_utils from ceph_volume.util import system, disk from ceph_volume import conf, decorators, terminal -from . import api +from ceph_volume.api import lvm as api from .common import prepare_parser