diff options
Diffstat (limited to 'tableDefault.go')
| -rw-r--r-- | tableDefault.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tableDefault.go b/tableDefault.go index 909a6ca..eb6d135 100644 --- a/tableDefault.go +++ b/tableDefault.go @@ -3,6 +3,8 @@ package forgepb import ( + "fmt" + "go.wit.com/lib/cobol" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" @@ -62,7 +64,7 @@ func (f *Forge) makeDefaultTB(pb *gitpb.Repos) *gitpb.ReposTable { col = t.AddNamespace() col.Width = 33 - col.Header.Name = "Namespace " + f.mode.String() + col.Header.Name = fmt.Sprintf("Cache(%s) mode(%s)", f.cache.Name, f.mode.String()) col = t.AddCurrentBranchName() col.Width = 7 |
