diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-04-20 22:42:54 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-04-20 22:42:54 +0000 |
commit | 5eab1430f2a7a91e2df22405913f328c9870b2e3 (patch) | |
tree | 78e928775a6a13d41ba2983de9d088b12dcb47c0 /novaclient/v2 | |
parent | 2b1f70c4ff6dc609a1c719673fb9ff4914211356 (diff) | |
parent | ccff3d3c948c1b0b3ce28f6928e39915b16d80ee (diff) | |
download | python-novaclient-5eab1430f2a7a91e2df22405913f328c9870b2e3.tar.gz |
Merge "Remove all imports from oslo namespace"2.24.0
Diffstat (limited to 'novaclient/v2')
-rw-r--r-- | novaclient/v2/flavors.py | 2 | ||||
-rw-r--r-- | novaclient/v2/servers.py | 2 | ||||
-rw-r--r-- | novaclient/v2/shell.py | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/novaclient/v2/flavors.py b/novaclient/v2/flavors.py index 54b0f497..1db42e24 100644 --- a/novaclient/v2/flavors.py +++ b/novaclient/v2/flavors.py @@ -16,7 +16,7 @@ Flavor interface. """ -from oslo.utils import strutils +from oslo_utils import strutils from six.moves.urllib import parse from novaclient import base diff --git a/novaclient/v2/servers.py b/novaclient/v2/servers.py index ba576ffd..624651b0 100644 --- a/novaclient/v2/servers.py +++ b/novaclient/v2/servers.py @@ -21,7 +21,7 @@ Server interface. import base64 -from oslo.utils import encodeutils +from oslo_utils import encodeutils import six from six.moves.urllib import parse diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py index 33653a12..f609d671 100644 --- a/novaclient/v2/shell.py +++ b/novaclient/v2/shell.py @@ -28,9 +28,9 @@ import os import sys import time -from oslo.utils import encodeutils -from oslo.utils import strutils -from oslo.utils import timeutils +from oslo_utils import encodeutils +from oslo_utils import strutils +from oslo_utils import timeutils import six from novaclient import client |