lint: fixing fmt issue

This commit is contained in:
Benjamin Chastanier
2021-10-05 10:34:55 +02:00
parent abeadba149
commit b81e2aae39
2 changed files with 5 additions and 5 deletions

View File

@@ -74,8 +74,8 @@ pub fn checkout_submodules(repo: &Repository) -> Result<(), Error> {
for mut submodule in submodules {
info!("getting submodule {:?} from {:?}", submodule.name(), submodule.url());
if let Err(e) = submodule.update(true, None) {
return Err(e)
if let Err(e) = submodule.update(true, None) {
return Err(e);
}
}
}