diff options
| author | Jamie Lennox <jamielennox@redhat.com> | 2014-12-17 18:17:56 +1000 |
|---|---|---|
| committer | Jamie Lennox <jamielennox@redhat.com> | 2014-12-17 18:17:56 +1000 |
| commit | 25a7c1f27f1ec83edfe1e33e83116ca3eda3ba94 (patch) | |
| tree | bfc6aa33fc15bfb5f27b3e2b8fd6e13c244e5432 /openstackclient/api | |
| parent | 52d22359f100c287c375edc73b6c4bd61be4c8da (diff) | |
| download | python-openstackclient-25a7c1f27f1ec83edfe1e33e83116ca3eda3ba94.tar.gz | |
Don't import form keystoneclient.openstack.common
The keystoneclient.openstack.common directory is where we sync files
from oslo incubator. It is not a public directory and should not be
being consumed by openstackclient.
Change-Id: I011bb95c2c824e2dbc4b822ca922ae77b8d9b955
Diffstat (limited to 'openstackclient/api')
| -rw-r--r-- | openstackclient/api/api.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/openstackclient/api/api.py b/openstackclient/api/api.py index 67386aaf..90b4e9c3 100644 --- a/openstackclient/api/api.py +++ b/openstackclient/api/api.py @@ -15,8 +15,7 @@ import simplejson as json -from keystoneclient.openstack.common.apiclient \ - import exceptions as ksc_exceptions +from keystoneclient import exceptions as ksc_exceptions from keystoneclient import session as ksc_session from openstackclient.common import exceptions |
