Fixed issue with format specifier

This commit is contained in:
CalDescent 2021-10-04 09:11:11 +01:00
parent 850d879726
commit de3ebf664f

View File

@ -375,7 +375,7 @@ public class Bootstrap {
Files.copy(in, path, REPLACE_EXISTING);
} catch (IOException e) {
throw new DataException(String.format("Unable to download bootstrap: {}", e.getMessage()));
throw new DataException(String.format("Unable to download bootstrap: %s", e.getMessage()));
}
}