Merge pull request #19 from nicoulaj/patch-2

Fix error message mentionning graphicsmagick instead of imagemagick
This commit is contained in:
phiresky 2019-06-24 19:27:58 +02:00 committed by GitHub
commit b75b8ee4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,7 @@ impl FileAdapter for PdfPagesAdapter {
.arg(out_fname);
let mut cmd = cmd.spawn().map_err(|e| {
map_exe_error(e, exe_name, "Make sure you have graphicsmagick installed.")
map_exe_error(e, exe_name, "Make sure you have imagemagick installed.")
})?;
let args = config.args;