diff --git a/crates/sprout-cli/src/commands/mem.rs b/crates/sprout-cli/src/commands/mem.rs index 798ce7d07..7fcd46902 100644 --- a/crates/sprout-cli/src/commands/mem.rs +++ b/crates/sprout-cli/src/commands/mem.rs @@ -219,7 +219,7 @@ pub async fn cmd_ls( if json { println!("{}", serde_json::to_string(&listings).unwrap_or_default()); } else if listings.is_empty() { - eprintln!("(no memories)"); + eprintln!("(no memories besides core)"); } else { for l in &listings { println!("{}\t{}\t{}", l.slug, l.created_at, l.event_id);