diff options
| -rw-r--r-- | cli/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/main.rs b/cli/src/main.rs index 10fa02c..5fd52c7 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -94,7 +94,7 @@ fn main() { Command::List { target: ListTarget::Categories } => { - println!("{:?}", store.categories()); + println!("{}", store.categories().join("\n")); } } } |
