summaryrefslogtreecommitdiff
path: root/heatclient/common
diff options
context:
space:
mode:
authorTang Chen <chen.tang@easystack.cn>2016-06-29 16:15:03 +0800
committerTang Chen <chen.tang@easystack.cn>2016-06-29 16:15:03 +0800
commitbfde2f8e09e724869104761d80fe23e61c7004c1 (patch)
tree4a89f8d8a8d94b3adf92b23a0dc52a99f72f47b6 /heatclient/common
parentf1c9930436b17c800f11cfbccd5399fc847ca8d5 (diff)
downloadpython-heatclient-bfde2f8e09e724869104761d80fe23e61c7004c1.tar.gz
Use osc_lib instead of cliff
Base classes of commands are defined in cliff, but have been encapsulated again in osc-lib for all plugin clients. So use osc-lib instead of cliff. Change-Id: I0e430457af3033ebf56e47f85c0cfd71d2227cf7
Diffstat (limited to 'heatclient/common')
-rw-r--r--heatclient/common/format_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/heatclient/common/format_utils.py b/heatclient/common/format_utils.py
index 2d950c9..0202b6c 100644
--- a/heatclient/common/format_utils.py
+++ b/heatclient/common/format_utils.py
@@ -12,12 +12,12 @@
#
# Copyright 2015 IBM Corp.
-from cliff import show
+from osc_lib.command import command
import six
import sys
-class RawFormat(show.ShowOne):
+class RawFormat(command.ShowOne):
def produce_output(self, parsed_args, column_names, data):
if data is None: