summaryrefslogtreecommitdiff
path: root/heatclient/v1
diff options
context:
space:
mode:
authortengqm <tengqim@cn.ibm.com>2015-03-23 19:49:34 +0800
committertengqm <tengqim@cn.ibm.com>2015-03-23 20:54:33 +0800
commit284c1c5b8da799564f0afb40aa0c1a69cecb40f7 (patch)
tree551c5c53d2936dfdaa2568711c588556a6af416b /heatclient/v1
parentd4dab8c875ef0f427bf7b3a6ab95a7e2f5a9a45e (diff)
downloadpython-heatclient-284c1c5b8da799564f0afb40aa0c1a69cecb40f7.tar.gz
Migrate to new oslo_xxx namespace
This patch migrates the namespace of oslo packages from oslo.foobar to oslo_foobar. The oslo_incubator code need to be resynced, which will be submitted in another patch. Change-Id: Id77207750556b71f20797a0ee6f2cafd62ea30e1
Diffstat (limited to 'heatclient/v1')
-rw-r--r--heatclient/v1/events.py3
-rw-r--r--heatclient/v1/resource_types.py3
-rw-r--r--heatclient/v1/resources.py3
-rw-r--r--heatclient/v1/shell.py6
4 files changed, 6 insertions, 9 deletions
diff --git a/heatclient/v1/events.py b/heatclient/v1/events.py
index 205e8ab..e94717a 100644
--- a/heatclient/v1/events.py
+++ b/heatclient/v1/events.py
@@ -13,11 +13,10 @@
# License for the specific language governing permissions and limitations
# under the License.
+from oslo_utils import encodeutils
import six
from six.moves.urllib import parse
-from oslo.utils import encodeutils
-
from heatclient.openstack.common.apiclient import base
from heatclient.v1 import stacks
diff --git a/heatclient/v1/resource_types.py b/heatclient/v1/resource_types.py
index 527e3bf..b1d39c9 100644
--- a/heatclient/v1/resource_types.py
+++ b/heatclient/v1/resource_types.py
@@ -11,10 +11,9 @@
# License for the specific language governing permissions and limitations
# under the License.
+from oslo_utils import encodeutils
from six.moves.urllib import parse
-from oslo.utils import encodeutils
-
from heatclient.openstack.common.apiclient import base
diff --git a/heatclient/v1/resources.py b/heatclient/v1/resources.py
index 24d9b18..5887a9d 100644
--- a/heatclient/v1/resources.py
+++ b/heatclient/v1/resources.py
@@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
+from oslo_utils import encodeutils
from six.moves.urllib import parse
-from oslo.utils import encodeutils
-
from heatclient.openstack.common.apiclient import base
from heatclient.v1 import stacks
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py
index 68e641e..e8b5ba4 100644
--- a/heatclient/v1/shell.py
+++ b/heatclient/v1/shell.py
@@ -14,13 +14,13 @@
# under the License.
import logging
+
+from oslo_serialization import jsonutils
+from oslo_utils import strutils
import six
from six.moves.urllib import request
import yaml
-from oslo.serialization import jsonutils
-from oslo.utils import strutils
-
from heatclient.common import deployment_utils
from heatclient.common import template_format
from heatclient.common import template_utils