printer/plainprinter.go
changeset 241 e77dad242f4c
parent 239 605a00e9d1ab
child 265 05c40b36d3b2
child 267 5b91a65ba95a
equal deleted inserted replaced
240:7c3e7b53cbd3 241:e77dad242f4c
   387 			indentedPrint(w, indent+p.Indent, false, false, "URL", "%s", a.URL)
   387 			indentedPrint(w, indent+p.Indent, false, false, "URL", "%s", a.URL)
   388 		} else if a.RemoteURL != nil {
   388 		} else if a.RemoteURL != nil {
   389 			indentedPrint(w, indent+p.Indent, false, false, "Remote URL", "%s", *a.RemoteURL)
   389 			indentedPrint(w, indent+p.Indent, false, false, "Remote URL", "%s", *a.RemoteURL)
   390 		}
   390 		}
   391 		if a.Description != nil && *a.Description != "" {
   391 		if a.Description != nil && *a.Description != "" {
   392 			indentedPrint(w, indent+p.Indent, false, true, "Description", "%s", a.Description)
   392 			indentedPrint(w, indent+p.Indent, false, true, "Description", "%s", *a.Description)
   393 		}
   393 		}
   394 	}
   394 	}
   395 	return nil
   395 	return nil
   396 }
   396 }
   397 
   397