cargo fmt
This commit is contained in:
parent
847deafe86
commit
d67a93a982
1 changed files with 4 additions and 1 deletions
|
@ -213,7 +213,10 @@ fn main() {
|
||||||
match manifest.save() {
|
match manifest.save() {
|
||||||
Ok(_) => {}
|
Ok(_) => {}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("Failed to save manifest, but we were able to save it before. {}", err);
|
println!(
|
||||||
|
"Failed to save manifest, but we were able to save it before. {}",
|
||||||
|
err
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue