cli: fix outputs
- `format!` was missing for the `"No seeds found"` message, so the `{rid}` was not being formatted.
- Missing a space between the seed and the timing.
This commit is contained in:
parent
ae1165fa58
commit
caf9e241a6
|
|
@ -224,7 +224,7 @@ where
|
|||
term::info!(
|
||||
&mut reporting.completion;
|
||||
"{}",
|
||||
term::format::yellow("No seeds found for {rid}.")
|
||||
term::format::yellow(format!("No seeds found for {rid}."))
|
||||
);
|
||||
return Ok(None);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue