summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-05-14 06:53:39 +0000
committerGerrit Code Review <review@openstack.org>2015-05-14 06:53:39 +0000
commit59c0872cdcebb3d726ec29ccb0b67fc39ad46ac6 (patch)
tree3af2df83f93bf73c63e4dbb0f4d34b714cea65d7
parent64724d70c50770a40255178b0ef8c35f5ba08e72 (diff)
parent3eb89ad7cc22b6afb5730ee2ee1c9e9b6502fe5c (diff)
downloadpython-keystoneclient-59c0872cdcebb3d726ec29ccb0b67fc39ad46ac6.tar.gz
Merge "Drop use of 'oslo' namespace package"
-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.