From cb00d5a5d24b2178164ca9f4af67da3d7ecfd3a6 Mon Sep 17 00:00:00 2001 From: Stephen Gaito Date: Wed, 17 Jun 2020 16:14:24 +0100 Subject: [PATCH] attempt to debug appImage problems --- pdf2htmlEX/test/test.py.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pdf2htmlEX/test/test.py.in b/pdf2htmlEX/test/test.py.in index e0aaa20..8f5f7dc 100755 --- a/pdf2htmlEX/test/test.py.in +++ b/pdf2htmlEX/test/test.py.in @@ -70,7 +70,8 @@ class Common(object): args = Common.PDF2HTMLEX_PATH.split() + [ '--data-dir', self.DATDIR, '--dest-dir', self.TMPDIR ] + args - + print("run_pdf2htmlEX args: [", args, "]") + with open(os.devnull, 'w') as fnull: return_code = subprocess.call(list(map(str, args)), stderr=fnull)