additional escape

This commit is contained in:
gammazero 2020-12-18 17:23:30 -08:00
parent e777adf04d
commit 306dfb34a1

View File

@ -154,7 +154,7 @@ Alternatively, publish an <ipfs-path> using a valid PeerID (as listed by
if quieter {
_, err = fmt.Fprintln(w, cmdenv.EscNonPrint(ie.Name))
} else {
_, err = fmt.Fprintf(w, "Published to %s: %s\n", cmdenv.EscNonPrint(ie.Name), ie.Value)
_, err = fmt.Fprintf(w, "Published to %s: %s\n", cmdenv.EscNonPrint(ie.Name), cmdenv.EscNonPrint(ie.Value))
}
return err
}),