summaryrefslogtreecommitdiff
path: root/saharaclient/osc/plugin.py
diff options
context:
space:
mode:
authorTang Chen <chen.tang@easystack.cn>2016-06-23 14:52:00 +0800
committerTang Chen <chen.tang@easystack.cn>2016-06-23 16:41:14 +0800
commit43e6413f97670537342440746c0900ac3da0e724 (patch)
treec9a1f0807ecbbb4760f18fab6388ccf65818fbf7 /saharaclient/osc/plugin.py
parent1e13fde14387f3b6a532e5fdb175731b7c5b9024 (diff)
downloadpython-saharaclient-43e6413f97670537342440746c0900ac3da0e724.tar.gz
Use osc-lib instead of openstackclient
osc-lib is a package of common support modules for writing OSC plugins. All common functions, classes such as exceptions, utils, logs and so on have been moved from openstackclient to osc-lib. So use osc-lib instead of openstackclient in sahara client. Change-Id: I9543988830eeeac0d09facebabdeed9a968ba3f0
Diffstat (limited to 'saharaclient/osc/plugin.py')
-rw-r--r--saharaclient/osc/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/saharaclient/osc/plugin.py b/saharaclient/osc/plugin.py
index e93968e..0cef052 100644
--- a/saharaclient/osc/plugin.py
+++ b/saharaclient/osc/plugin.py
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from openstackclient.common import utils
+from osc_lib import utils
from oslo_log import log as logging
LOG = logging.getLogger(__name__)