Skip to content

Commit

Permalink
Fix show collection format bug (#123)
Browse files Browse the repository at this point in the history
Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia authored Mar 24, 2023
1 parent f39c6ae commit c62ae91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion states/etcd/show/collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func CollectionCommand(cli clientv3.KV, basePath string) *cobra.Command {
printCollection(collection)
}
fmt.Println("================================================================================")
fmt.Printf("--- Total collections: %d\t Matched collections: %dn", total, len(collections))
fmt.Printf("--- Total collections: %d\t Matched collections: %d\n", total, len(collections))
},
}

Expand Down

0 comments on commit c62ae91

Please sign in to comment.