From 7f9da0e5ac495b6fd7e6ae006a692cf1f0d0f43c Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 11 Jun 2018 00:19:55 +0300 Subject: Drop: status column in icktool status output --- icktool | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/icktool b/icktool index 3e954e2..8edd3a0 100755 --- a/icktool +++ b/icktool @@ -290,20 +290,17 @@ class StatusCommand(Command): def execute(self, args): table = Table() - table.set_columns('project', 'status', 'build_status', 'log_id') + table.set_columns('project', 'build_status', 'log_id') projects = self.api.show('/projects') builds = self.api.show('/builds') - statuses = self.api.show('/status') projects = self._sort_projects(projects) for project in projects: project_name = project['project'] - project_status = statuses[project_name] row = { 'project': project_name, - 'status': project_status['status'], 'build_status': 'n/a', 'log_id': 'n/a' } -- cgit v1.2.1