backend: fix output of an array of strings

This commit is contained in:
Nick Craig-Wood 2020-05-13 17:55:56 +01:00
parent 33d9310c49
commit 5eb558e058

View File

@ -102,7 +102,7 @@ Note to run these commands on a running backend then see
case string:
fmt.Println(out)
case []string:
for line := range x {
for _, line := range x {
fmt.Println(line)
}
default: