fix: align banner right-side border to consistent 64-char width

This commit is contained in:
Tanayk07
2026-03-17 11:34:23 +05:30
committed by Kristoffer Dalby
parent 5105033224
commit 568baf3d02

View File

@@ -862,7 +862,7 @@ func warnBanner(lines []string) {
b.WriteString("### ###\n")
for _, line := range lines {
b.WriteString(fmt.Sprintf("### %-56s ###\n", line))
b.WriteString(fmt.Sprintf("### %-54s ###\n", line))
}
b.WriteString("### ###\n")
@@ -968,8 +968,9 @@ func LoadServerConfig() (*Config, error) {
"Please revert your prefixes to subsets of the standard",
"ranges as described in the example configuration.",
"",
"Any issue raised using a range outside of the supported",
"range will be labelled as wontfix and closed.",
"Any issue raised using a range outside of the",
"supported range will be labelled as wontfix",
"and closed.",
})
}