diff --git a/job.go b/job.go index c026e56..38a62e8 100644 --- a/job.go +++ b/job.go @@ -968,13 +968,13 @@ func jobVaultStatus(j Job) { } if currentUserID64 != 0 { //display info - out := fmt.Sprintf("
%-32s | Depo. | Recv. | Total\n────────────────────────────┼──────┼──────┼──────\n", `Item`)
+		out := fmt.Sprintf("%-32s | Depo. | Recv. | Total\n────────────────────────────┼──────┼──────┼──────\n", `Item`)
 		for i, itemId := range itemList {
 			item, err := getObjItem(itemId)
 			logOnError(err, "jobVaultStatus : getObjItem")
 			out = fmt.Sprintf("%s%-32s |%6d |%6d |%6d\n", out, item.Name, depositList[i], withdrawList[i], depositList[i]-withdrawList[i])
 		}
-		out = fmt.Sprintf("%s
", out) + out = fmt.Sprintf("%s", out) log.Printf("Vault Status :\n%s", out) c := TGCommand{ Type: commandReplyMsg,