diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-05-14 06:53:39 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-05-14 06:53:39 +0000 |
| commit | 59c0872cdcebb3d726ec29ccb0b67fc39ad46ac6 (patch) | |
| tree | 3af2df83f93bf73c63e4dbb0f4d34b714cea65d7 | |
| parent | 64724d70c50770a40255178b0ef8c35f5ba08e72 (diff) | |
| parent | 3eb89ad7cc22b6afb5730ee2ee1c9e9b6502fe5c (diff) | |
| download | python-keystoneclient-59c0872cdcebb3d726ec29ccb0b67fc39ad46ac6.tar.gz | |
Merge "Drop use of 'oslo' namespace package"
| -rw-r--r-- | keystoneclient/session.py | 4 |
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. |
