diff options
Diffstat (limited to 'humanTable.go')
| -rw-r--r-- | humanTable.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/humanTable.go b/humanTable.go index d70baf1..2b25728 100644 --- a/humanTable.go +++ b/humanTable.go @@ -342,7 +342,11 @@ func (psets *Patchsets) PrintTable() { var countCONTENTS int var countPARTS int for x, pset := range psets.GetPatchsets() { - log.Info(pset.Uuid, pset.Name) + log.Info(pset.Uuid, pset.Name, pset.State) + if pset.State == "DONE" { + // old patchset + continue + } cId := log.Sprintf("%d", x) countCONTENTS += 1 for i, p := range pset.Patches.GetPatches() { |
