summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-09 12:26:40 -0500
committerJeff Carr <[email protected]>2025-10-09 12:26:40 -0500
commitd5e2dac5c9eea5a9fe01d9fddea72915c5c1de19 (patch)
treefbd01a8c0c9c30ed5f212ab29e81386ee8115d94
parent91f1735cfaa23cd1b496459cf1aae36212def528 (diff)
return the footer
-rw-r--r--tableDefault.go12
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)
}