summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
}