Fixed Pin ls Formatter for grep

Removed single quotes from pin name for ease of grepping.
This commit is contained in:
Tom O'Donnell (te0d) 2017-11-30 15:25:43 -05:00
parent 8f8f74acc5
commit 8746f58b93

View File

@ -130,7 +130,7 @@ func textFormatPrintVersion(obj *api.Version) {
} }
func textFormatPrintPin(obj *api.PinSerial) { func textFormatPrintPin(obj *api.PinSerial) {
fmt.Printf("%s | '%s' | Allocations: ", obj.Cid, obj.Name) fmt.Printf("%s | %s | Allocations: ", obj.Cid, obj.Name)
if obj.ReplicationFactor < 0 { if obj.ReplicationFactor < 0 {
fmt.Printf("[everywhere]\n") fmt.Printf("[everywhere]\n")
} else { } else {