diff --git a/zunclient/osc/v1/services.py b/zunclient/osc/v1/services.py index 53cac4bb..b2406440 100644 --- a/zunclient/osc/v1/services.py +++ b/zunclient/osc/v1/services.py @@ -34,7 +34,7 @@ class ListService(command.Lister): client = _get_client(self, parsed_args) services = client.services.list() columns = ('Id', 'Host', 'Binary', 'State', 'Disabled', - 'Disabled Reason', 'Created At', 'Updated At') + 'Disabled Reason', 'Updated At') return (columns, (utils.get_item_properties(service, columns) for service in services)) diff --git a/zunclient/v1/services_shell.py b/zunclient/v1/services_shell.py index 44a261c9..b7cc3168 100644 --- a/zunclient/v1/services_shell.py +++ b/zunclient/v1/services_shell.py @@ -21,7 +21,7 @@ def do_service_list(cs, args): """Print a list of zun services.""" services = cs.services.list() columns = ('Id', 'Host', 'Binary', 'State', 'Disabled', - 'Disabled Reason', 'Created At', 'Updated At') + 'Disabled Reason', 'Updated At') utils.print_list(services, columns, {'versions': zun_utils.print_list_field('versions')})