Skip to content

Commit 46dc4c4

Browse files
committed
fix: formatting of list command
1 parent 5d43f23 commit 46dc4c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vhost.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (v *VhostMux) DumpServers(w io.Writer) {
6969
case 1:
7070
fmt.Fprintln(w, "1 vhost:")
7171
default:
72-
fmt.Fprintf(w, "%d vhosts:", c)
72+
fmt.Fprintf(w, "%d vhosts:\n", c)
7373
}
7474
for _, v := range v.Servers {
7575
fmt.Fprintf(w, "%s -> %s:%d\n", v.Host, v.ServiceHost, v.Port)

0 commit comments

Comments
 (0)