summaryrefslogtreecommitdiff
path: root/keystoneclient/session.py
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2015-05-06 19:17:09 +0000
committerDoug Hellmann <doug@doughellmann.com>2015-05-08 13:37:43 +0000
commit3eb89ad7cc22b6afb5730ee2ee1c9e9b6502fe5c (patch)
treefbff17cd3fff33ee96d9083c40178694972bba1a /keystoneclient/session.py
parentdfda42b331fd32aab2c073aa7c101efd15b76cd5 (diff)
downloadpython-keystoneclient-3eb89ad7cc22b6afb5730ee2ee1c9e9b6502fe5c.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: I387a7a1a817058a4daca313fe6df60612cb84864
Diffstat (limited to 'keystoneclient/session.py')
-rw-r--r--keystoneclient/session.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/session.py b/keystoneclient/session.py
index 96df8d0..4ccc4ac 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.