summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-15 02:35:43 -0500
committerJeff Carr <[email protected]>2025-10-15 02:35:43 -0500
commit544e3e7333e75f985836c07914008c9767635e7a (patch)
treed22c8a1949d7fbc1e6008312938f2a9c92dcd63b
parent332dbb9287327a1477ed07ebcc4cfca3f418a376 (diff)
found another date
-rw-r--r--tableSmart.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tableSmart.go b/tableSmart.go
index 69bb366..31adf11 100644
--- a/tableSmart.go
+++ b/tableSmart.go
@@ -99,12 +99,12 @@ func (m *Machine) makeSmartTable(pb *Packages) *PackagesTable {
})
col.Width = 28
- col = t.AddStringFunc("anytime", func(p *Package) string {
+ col = t.AddStringFunc("BuildDate", func(p *Package) string {
if p.DebInfo == nil {
return "debinfo == nil"
}
if p.BuildDate != nil {
- return "not " + cobol.Time(p.BuildDate)
+ return cobol.Time(p.BuildDate)
}
if p.Ctime != nil {
return "lies " + cobol.Time(p.Ctime)