From db6dcbe8a9581b8e29e08768ffabc771c4234e79 Mon Sep 17 00:00:00 2001 From: "Dr. Peter Poeml" Date: Thu, 15 May 2008 15:44:57 +0000 Subject: [PATCH] treat build status 'finished' as 'building' --- osc/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osc/core.py b/osc/core.py index 7aba6b37..6b33b88f 100755 --- a/osc/core.py +++ b/osc/core.py @@ -150,6 +150,7 @@ buildstatus_symbols = {'succeeded': '.', 'broken': 'B', 'blocked': 'b', 'building': '%', + 'finished': '%', 'scheduled': 's', }