diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2016-05-13 16:14:09 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2016-06-13 10:50:44 -0500 |
| commit | e5e29a8fef7ba2396015918545a49e717fe75d15 (patch) | |
| tree | c42c9581e6358c9327853e7800de0dfecc20a405 /doc | |
| parent | d20c863ebc11cecaaefe043e615b2fb4f5f26063 (diff) | |
| download | python-openstackclient-e5e29a8fef7ba2396015918545a49e717fe75d15.tar.gz | |
osc-lib: utils
Use osc-lib directly for utils.
Leave openstackclient.common.utils for deprecation period.
Change-Id: I5bd9579abc4e07f45219ccd0565626e6667472f7
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/source/plugins.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/plugins.rst b/doc/source/plugins.rst index de3018b9..27846318 100644 --- a/doc/source/plugins.rst +++ b/doc/source/plugins.rst @@ -95,7 +95,7 @@ so the version should not contain the leading 'v' character. .. code-block:: python - from openstackclient.common import utils + from osc_lib import utils DEFAULT_API_VERSION = '1' @@ -153,12 +153,12 @@ the plugin commands: # osc-lib interfaces available to plugins: from osc_lib import exceptions + from osc_lib import utils # OSC common interfaces available to plugins: from openstackclient.common import command from openstackclient.common import parseractions from openstackclient.common import logs - from openstackclient.common import utils class DeleteMypluginobject(command.Command): |
