Fix error message mentionning graphicsmagick instead of imagemagick

This commit is contained in:
Julien Nicoulaud 2019-06-24 10:47:22 +02:00 committed by GitHub
parent 0f1058c4d2
commit 6d2df9162c
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;