summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tableForged.go2
-rw-r--r--tablePatches.go4
-rw-r--r--tablePull.go2
3 files changed, 4 insertions, 4 deletions
diff --git a/tableForged.go b/tableForged.go
index 902d8c0..3faaf01 100644
--- a/tableForged.go
+++ b/tableForged.go
@@ -10,7 +10,7 @@ import (
func (f *Forge) PrintForgedTable(pb *gitpb.Repos) string {
tablePB := f.makeForgedTable(pb)
tablePB.PrintTable()
- return log.Sprintf("fpb.ForgedTable: %d repos\n", pb.Len())
+ return log.Sprintf("fpb.ForgedTable: %d repos", pb.Len())
}
func (f *Forge) makeForgedTable(pb *gitpb.Repos) *gitpb.ReposTable {
diff --git a/tablePatches.go b/tablePatches.go
index 8f77cc1..e777afe 100644
--- a/tablePatches.go
+++ b/tablePatches.go
@@ -17,7 +17,7 @@ func (pset *Set) PrintTable() string {
tablePB := pset.Patches.MakeTable()
tablePB.PrintTable()
- return log.Sprintf("pset.DefaultTable: %d patches\n", pset.Patches.Len())
+ return log.Sprintf("pset.DefaultTable: %d patches", pset.Patches.Len())
}
func (pb *Sets) PrintTable() {
@@ -37,7 +37,7 @@ func (pb *Patches) PrintTable() string {
tablePB := pb.MakeTable()
tablePB.PrintTable()
- return log.Sprintf("default patches table %d patches\n", pb.Len())
+ return log.Sprintf("default patches table %d patches", pb.Len())
}
func (pb *Patches) MakeTable() *PatchesTable {
diff --git a/tablePull.go b/tablePull.go
index 62b69c3..a35ccc5 100644
--- a/tablePull.go
+++ b/tablePull.go
@@ -12,7 +12,7 @@ import (
func (f *Forge) PrintPullTable(pb *gitpb.Repos) string {
tablePB := f.makePullTable(pb)
tablePB.PrintTable()
- return log.Sprintf("fpb.PullTable: %d repos\n", pb.Len())
+ return log.Sprintf("fpb.PullTable: %d repos", pb.Len())
}
func (f *Forge) makePullTable(pb *gitpb.Repos) *gitpb.ReposTable {