summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xicktool5
1 files changed, 1 insertions, 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'
}