diff options
author | Doug Hellmann <doug@doughellmann.com> | 2015-05-06 19:45:44 +0000 |
---|---|---|
committer | Doug Hellmann <doug@doughellmann.com> | 2015-05-06 19:45:44 +0000 |
commit | 8612fd048d18229d2c2d2492f6815c9e5837b8a5 (patch) | |
tree | 2e33c35fc13ea45994dad72e5ebf7af0665fe9ae /troveclient/client.py | |
parent | f996f5e8ba33a126c37d7d461380fb0e49d188f4 (diff) | |
download | python-troveclient-8612fd048d18229d2c2d2492f6815c9e5837b8a5.tar.gz |
Drop use of 'oslo' namespace package
The Oslo libraries have moved all of their code out of the 'oslo'
namespace package into per-library packages. The namespace package was
retained during kilo for backwards compatibility, but will be removed by
the liberty-2 milestone. This change removes the use of the namespace
package, replacing it with the new package names.
The patches in the libraries will be put on hold until application
patches have landed, or L2, whichever comes first. At that point, new
versions of the libraries without namespace packages will be released as
a major version update.
Please merge this patch, or an equivalent, before L2 to avoid problems
with those library releases.
Blueprint: remove-namespace-packages
https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages
Change-Id: I2a8caa859830b3416bfe54e4261dd3415ac5a76a
Diffstat (limited to 'troveclient/client.py')
-rw-r--r-- | troveclient/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/troveclient/client.py b/troveclient/client.py index e5164bd..1897173 100644 --- a/troveclient/client.py +++ b/troveclient/client.py @@ -25,7 +25,7 @@ import logging import requests from keystoneclient import adapter -from oslo.utils import importutils +from oslo_utils import importutils from troveclient.openstack.common.apiclient import client from troveclient.openstack.common.apiclient import exceptions from troveclient import service_catalog |