diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2016-06-08 14:17:14 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2016-06-13 10:50:01 -0500 |
| commit | d20c863ebc11cecaaefe043e615b2fb4f5f26063 (patch) | |
| tree | 7f4b63a9e21982d6244e5a24fd93dab697470ce0 /openstackclient/common | |
| parent | 17627c55956bca21ddb601fb2604579d0fbb9c9b (diff) | |
| download | python-openstackclient-d20c863ebc11cecaaefe043e615b2fb4f5f26063.tar.gz | |
osc-lib: exceptions
Use osc-lib directly for exceptions.
Leave openstackclient.common.exceptions for deprecation period.
Change-Id: Iea3e862302372e1b31ccd27f69db59b4953ca828
Diffstat (limited to 'openstackclient/common')
| -rw-r--r-- | openstackclient/common/clientmanager.py | 2 | ||||
| -rw-r--r-- | openstackclient/common/command.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index e8ba7ec4..04f624d0 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -20,12 +20,12 @@ import logging import pkg_resources import sys +from osc_lib import exceptions from oslo_utils import strutils import requests import six from openstackclient.api import auth -from openstackclient.common import exceptions from openstackclient.common import session as osc_session from openstackclient.identity import client as identity_client diff --git a/openstackclient/common/command.py b/openstackclient/common/command.py index 144a0db1..adf984fa 100644 --- a/openstackclient/common/command.py +++ b/openstackclient/common/command.py @@ -18,9 +18,9 @@ import logging from cliff import command from cliff import lister from cliff import show +from osc_lib import exceptions import six -from openstackclient.common import exceptions from openstackclient.i18n import _ |
