diff options
| author | Jeff Carr <[email protected]> | 2025-09-05 01:24:34 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-05 01:24:34 -0500 |
| commit | 817107dc160071ca3fe1c196335d6747271f3c99 (patch) | |
| tree | 90283e94993a3113e8a54546b2556a8816a47d01 /humanTable.go | |
| parent | 4a27e7702b9b975b066ec9d2ee7ac932d86552e3 (diff) | |
more patch stuffv0.0.126
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() { |
