summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
Diffstat (limited to 'human.go')
-rw-r--r--human.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/human.go b/human.go
index 6e1dece..ec2997c 100644
--- a/human.go
+++ b/human.go
@@ -36,7 +36,7 @@ func msg(w http.ResponseWriter, s string) {
func (v *RepoList) PrintReport(w http.ResponseWriter, readonly string, onlydirty string, perfect string) {
var count int
- header := fmt.Sprintf("%-35s %5s %-20s %-20s %-20s %-20s %-15s",
+ header := fmt.Sprintf("%-35s %5s %-20s %-20s %-20s %-20s %-15s",
"REPO", "AGE",
"LAST", "MASTER", "DEVEL", "USER",
"STATE")
@@ -88,7 +88,7 @@ func (r *RepoRow) StandardReleaseHeader() string {
curname := r.Status.GetCurrentBranchName()
master := r.Status.GetMasterVersion()
- user := r.Status.GetUserVersion()
+ user := r.Status.GetUserVersion()
target := r.Status.GetTargetVersion()
header := fmt.Sprintf("%-35s %5s %-10s %-10s %-10s %-10s %-20s %-15s",
@@ -103,12 +103,11 @@ func (r *RepoRow) StandardReleaseHeader() string {
return header
}
-
func (v *RepoList) PrintReleaseReport(w http.ResponseWriter, readonly string, perfect string) {
var count int
- header := fmt.Sprintf("%-35s %5s %-10s %-10s %-10s %-10s %-20s %-15s",
- "REPO", "AGE", "CUR BR",
+ header := fmt.Sprintf("%-35s %5s %-10s %-10s %-10s %-10s %-20s %-15s",
+ "REPO", "AGE", "CUR BR",
"LAST", "MASTER", "TARGET", "USER",
"STATE")
msg(w, header)