summaryrefslogtreecommitdiff
path: root/tablePatches.go
diff options
context:
space:
mode:
Diffstat (limited to 'tablePatches.go')
-rw-r--r--tablePatches.go4
1 files changed, 2 insertions, 2 deletions
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 {