additional escape
gammazero committed
Dec 18, 2020 at 17:23 UTC
306dfb34a14b0c00958b467f0df3366f816beaad
1 file changed
+1
-1
core/commands/name/publish.go
+1
-1
@@ -154,7 +154,7 @@ Alternatively, publish an <ipfs-path> using a valid PeerID (as listed by
154
if quieter {
155
_, err = fmt.Fprintln(w, cmdenv.EscNonPrint(ie.Name))
156
} else {
157
- _, err = fmt.Fprintf(w, "Published to %s: %s\n", cmdenv.EscNonPrint(ie.Name), ie.Value)
157
+ _, err = fmt.Fprintf(w, "Published to %s: %s\n", cmdenv.EscNonPrint(ie.Name), cmdenv.EscNonPrint(ie.Value))
158
}
159
return err
160
}),