Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
cli: fix formatting of warning of unconnected node
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Wirzenius <[email protected]>
  • Loading branch information
Lars Wirzenius authored and cloudhead committed Feb 5, 2024
1 parent e12bff0 commit 5abd7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicle-cli/src/commands/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ pub fn fetch(
// Fetch from specified seeds, plus our preferred seeds.
for nid in &settings.seeds {
if !sessions.iter().any(|s| &s.nid == nid) {
term::warning("node {nid} is not connected.. skipping");
term::warning(format!("node {nid} is not connected.. skipping"));
continue;
}
let result = fetch_from(rid, nid, timeout, node)?;
Expand Down

0 comments on commit 5abd7bf

Please sign in to comment.