diff options
| author | Jeff Carr <[email protected]> | 2025-10-09 12:26:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-09 12:26:40 -0500 |
| commit | d5e2dac5c9eea5a9fe01d9fddea72915c5c1de19 (patch) | |
| tree | fbd01a8c0c9c30ed5f212ab29e81386ee8115d94 | |
| parent | 91f1735cfaa23cd1b496459cf1aae36212def528 (diff) | |
return the footer
| -rw-r--r-- | tableDefault.go | 12 |
1 files 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) } |
