From d5e2dac5c9eea5a9fe01d9fddea72915c5c1de19 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 9 Oct 2025 12:26:40 -0500 Subject: return the footer --- tableDefault.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tableDefault.go b/tableDefault.go index 17611b8..38f95cb 100644 --- a/tableDefault.go +++ b/tableDefault.go @@ -114,14 +114,14 @@ func (f *Forge) makeDefaultTB(pb *gitpb.Repos) *gitpb.ReposTable { } // // the old function names -func (f *Forge) PrintHumanTable(pb *gitpb.Repos) { - f.PrintDefaultTB(pb) +func (f *Forge) PrintHumanTable(pb *gitpb.Repos) string { + return f.PrintDefaultTB(pb) } -func (f *Forge) PrintHumanTableFull(pb *gitpb.Repos) { - f.PrintDefaultTB(pb) +func (f *Forge) PrintHumanTableFull(pb *gitpb.Repos) string { + return f.PrintDefaultTB(pb) } -func (f *Forge) PrintHumanTableDirty(pb *gitpb.Repos) { - f.PrintDefaultTB(pb) +func (f *Forge) PrintHumanTableDirty(pb *gitpb.Repos) string { + return f.PrintDefaultTB(pb) } -- cgit v1.2.3