Merge pull request #79 from cpick/mention-graphicsmagick

Revert "Fix error message mentionning graphicsmagick instead of imagemagick"
This commit is contained in:
phiresky 2020-12-03 15:14:23 +01:00 committed by GitHub
commit 92cbfd9c85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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