From 4dddfbc4351cfa267946210c9aea59adbaa62f3b Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Fri, 24 Aug 2018 13:43:29 -0300 Subject: PDF: fix reference to rsvg-convert (#4855) When rsvg-convert is not available, pandoc would tell the user to check for rsvg2pdf instead --- src/Text/Pandoc/PDF.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text/Pandoc/PDF.hs b/src/Text/Pandoc/PDF.hs index 65de3e45a..3484699c0 100644 --- a/src/Text/Pandoc/PDF.hs +++ b/src/Text/Pandoc/PDF.hs @@ -188,7 +188,7 @@ convertImage tmpdir fname = then return $ Right pdfOut else return $ Left "conversion from SVG failed") (\(e :: E.SomeException) -> return $ Left $ - "check that rsvg2pdf is in path.\n" ++ + "check that rsvg-convert is in path.\n" ++ show e) _ -> JP.readImage fname >>= \res -> case res of -- cgit v1.2.3