Skip to content

Commit

Permalink
println instead of printf
Browse files Browse the repository at this point in the history
  • Loading branch information
dselans committed Aug 19, 2022
1 parent 8fcb03e commit f5be97d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/kv_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func (c *kvCommand) lsBucketKeys() error {
keys, err := kv.Keys()
if err != nil {
if err == nats.ErrNoKeysFound {
fmt.Printf("No keys found in bucket")
fmt.Println("No keys found in bucket")
return nil
}

Expand Down

0 comments on commit f5be97d

Please sign in to comment.