summaryrefslogtreecommitdiff
path: root/heatclient/shell.py
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2015-12-27 01:29:53 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2015-12-27 01:29:53 -0500
commit7401335f85614650f7248f6eb122da29092c7ef9 (patch)
treebe18e67e579641aca0c49780b56a36c7d0de830d /heatclient/shell.py
parent9d70aa2bb4209c30fb0b1ba67a1fb95a282b6f78 (diff)
downloadpython-heatclient-7401335f85614650f7248f6eb122da29092c7ef9.tar.gz
use keystoneclient exceptions instead of oslo-incubator code
depending on any oslo-incubator code from another project is dangerous. keystoneclient makes its exceptions public and it's not recommended to use any code from keystoneclient.openstack.common.apiclient since it's maintained by oslo-incubator. Change-Id: Id1f5d1ddc5b297c9547c6d16d3ee70496c7852f4
Diffstat (limited to 'heatclient/shell.py')
-rw-r--r--heatclient/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/shell.py b/heatclient/shell.py
index 019df3e..5eeb95a 100644
--- a/heatclient/shell.py
+++ b/heatclient/shell.py
@@ -28,7 +28,7 @@ import six.moves.urllib.parse as urlparse
from keystoneclient.auth.identity import v2 as v2_auth
from keystoneclient.auth.identity import v3 as v3_auth
from keystoneclient import discover
-from keystoneclient.openstack.common.apiclient import exceptions as ks_exc
+from keystoneclient import exceptions as ks_exc
from keystoneclient import session as kssession
import heatclient