From ef2a2b124cc7205dbe4dd9df236cd480eee61983 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 21 Apr 2016 16:17:00 +0300 Subject: Fix ick -v "pipeline: pipeline" output --- NEWS | 4 ++++ icklib/progress.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 320f7a8..a26a4db 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,10 @@ NEWS for Ick Version 0.18+git, not yet released ---------------------------------- +Bug fix: + +* With `ick -v`, a buglet was fixed so that ick now reports the name + of the pipeline rather than "pipeline: pipeline". Version 0.18, released 2016-04-21 ---------------------------------- diff --git a/icklib/progress.py b/icklib/progress.py index d071792..462f4d1 100644 --- a/icklib/progress.py +++ b/icklib/progress.py @@ -98,7 +98,7 @@ class VerboseProgress(_Progress): 'projects': None, 'project': None, 'project_name': 'Project: {value}', - 'pipeline': indent + 'pipeline: {key}', + 'pipeline': indent + 'pipeline: {value}', 'step': indent * 2 + '{value}', 'target': indent * 3 + '{value}', 'command': indent * 4 + '{value}', -- cgit v1.2.1