Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadrad committed Dec 10, 2020
1 parent c891893 commit f22588d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (c *client) printText(counter int) {
continue
}
if strings.Contains(filter, strings.ToLower(f.Name)) || filter == "" {
fmt.Printf("%s:%d ", f.Name, v.Field(i).Interface())
fmt.Printf("%s:%v ", f.Name, v.Field(i).Interface())
}
}
fmt.Println("")
Expand Down

0 comments on commit f22588d

Please sign in to comment.