From 3eb89ad7cc22b6afb5730ee2ee1c9e9b6502fe5c Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 6 May 2015 19:17:09 +0000 Subject: [PATCH] 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: I387a7a1a817058a4daca313fe6df60612cb84864 --- keystoneclient/session.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keystoneclient/session.py b/keystoneclient/session.py index 96df8d037..4ccc4ac3d 100644 --- a/keystoneclient/session.py +++ b/keystoneclient/session.py @@ -702,7 +702,7 @@ class Session(object): For example, to support the ``ca_file`` option pointing to the new ``cafile`` option name:: - old_opt = oslo.cfg.DeprecatedOpt('ca_file', 'old_group') + old_opt = oslo_cfg.DeprecatedOpt('ca_file', 'old_group') deprecated_opts={'cafile': [old_opt]} :returns: A list of oslo_config options. @@ -750,7 +750,7 @@ class Session(object): For example, to support the ``ca_file`` option pointing to the new ``cafile`` option name:: - old_opt = oslo.cfg.DeprecatedOpt('ca_file', 'old_group') + old_opt = oslo_cfg.DeprecatedOpt('ca_file', 'old_group') deprecated_opts={'cafile': [old_opt]} :returns: The list of options that was registered.