Use oslo_vmware instead of deprecated oslo.vmware

Change-Id: I3d158786bc276c9d0de4fbaa324216697a5483aa
This commit is contained in:
Dina Belova 2015-01-15 17:57:53 +03:00 committed by Vipin Balachandran
parent 2fb046fb66
commit 7a3fe43c91
4 changed files with 4 additions and 4 deletions

View File

@ -15,9 +15,9 @@
"""Implementation of Inspector abstraction for VMware vSphere"""
from oslo.vmware import api
from oslo_config import cfg
from oslo_utils import units
from oslo_vmware import api
from ceilometer.compute.virt import inspector as virt_inspector
from ceilometer.compute.virt.vmware import vsphere_operations

View File

@ -13,7 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.vmware import vim_util
from oslo_vmware import vim_util
PERF_MANAGER_TYPE = "PerformanceManager"

View File

@ -17,7 +17,7 @@ Tests for VMware Vsphere inspector.
"""
import mock
from oslo.vmware import api
from oslo_vmware import api
from oslotest import base
from ceilometer.compute.virt import inspector as virt_inspector

View File

@ -14,7 +14,7 @@
# under the License.
import mock
from oslo.vmware import api
from oslo_vmware import api
from oslotest import base
from ceilometer.compute.virt.vmware import vsphere_operations