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/compute/v2 | |
| 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/compute/v2')
| -rw-r--r-- | openstackclient/compute/v2/security_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/v2/security_group.py b/openstackclient/compute/v2/security_group.py index cd330857..f7ffb1d1 100644 --- a/openstackclient/compute/v2/security_group.py +++ b/openstackclient/compute/v2/security_group.py @@ -23,7 +23,7 @@ from cliff import command from cliff import lister from cliff import show -from keystoneclient.openstack.common.apiclient import exceptions as ksc_exc +from keystoneclient import exceptions as ksc_exc from novaclient.v1_1 import security_group_rules from openstackclient.common import parseractions from openstackclient.common import utils |
