# HG changeset patch # User Mikael Berthe # Date 1538218365 -7200 # Node ID e77dad242f4c571ebb7fa2d9a98d99e612f68827 # Parent 7c3e7b53cbd32b54ad4d89ec159fd37052f4b910 Fix format bug in plainprinter diff -r 7c3e7b53cbd3 -r e77dad242f4c printer/plainprinter.go --- a/printer/plainprinter.go Sat Sep 29 12:40:01 2018 +0200 +++ b/printer/plainprinter.go Sat Sep 29 12:52:45 2018 +0200 @@ -389,7 +389,7 @@ indentedPrint(w, indent+p.Indent, false, false, "Remote URL", "%s", *a.RemoteURL) } if a.Description != nil && *a.Description != "" { - indentedPrint(w, indent+p.Indent, false, true, "Description", "%s", a.Description) + indentedPrint(w, indent+p.Indent, false, true, "Description", "%s", *a.Description) } } return nil