attempt to debug appImage problems

This commit is contained in:
Stephen Gaito 2020-06-17 16:14:24 +01:00
parent 27df8a4262
commit cb00d5a5d2
1 changed files with 2 additions and 1 deletions

View File

@ -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)