cli: fix error formatting
Missed using `format!` to actually emit the error when the sync fails.
This commit is contained in:
parent
ed5b2659c8
commit
01bed73a60
|
|
@ -260,7 +260,7 @@ where
|
|||
Ok(Some(result))
|
||||
}
|
||||
Err(err) => {
|
||||
spinner.error("Sync failed: {err}");
|
||||
spinner.error(format!("Sync failed: {err}"));
|
||||
Err(err.into())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue