From bfde2f8e09e724869104761d80fe23e61c7004c1 Mon Sep 17 00:00:00 2001 From: Tang Chen Date: Wed, 29 Jun 2016 16:15:03 +0800 Subject: 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 --- heatclient/common/format_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'heatclient/common') 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: -- cgit v1.2.1