cargo fmt

This commit is contained in:
Carson McManus 2021-08-10 22:45:17 -04:00
parent 847deafe86
commit d67a93a982

View file

@ -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;
} }
} }