Do not suppress messages from pdftohtml

This commit is contained in:
Kovid Goyal 2016-07-23 07:47:08 +05:30
parent 04e4a1a10e
commit 077daa87f1

View File

@ -55,7 +55,7 @@ def pdftohtml(output_dir, pdf_path, no_images, as_xml=False):
unicode) else PDFTOHTML
cmd = [exe, b'-enc', b'UTF-8', b'-noframes', b'-p', b'-nomerge',
b'-nodrm', b'-q', a(pdfsrc), a(index)]
b'-nodrm', a(pdfsrc), a(index)]
if isbsd:
cmd.remove(b'-nodrm')