From 4e33e17e22a4e02058ac14edcd34746a7895f8a4 Mon Sep 17 00:00:00 2001
From: Steve Martinelli <stevemar@ca.ibm.com>
Date: Sun, 27 Dec 2015 01:46:44 -0500
Subject: [PATCH] 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: Ic0c43319eca06ca9dc29c00c5462eebae50bb698
---
 tackerclient/shell.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tackerclient/shell.py b/tackerclient/shell.py
index 6450cd40..a097ca09 100644
--- a/tackerclient/shell.py
+++ b/tackerclient/shell.py
@@ -31,7 +31,7 @@ import sys
 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
 from oslo_utils import encodeutils
 import six.moves.urllib.parse as urlparse