From 15e98ff2cf4776c993ef8bfb3b4c552cdccaf015 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 31 Jan 2021 20:22:16 +0000 Subject: [PATCH] Do not ignore error from calling Inkscape --- buildpdf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildpdf.py b/buildpdf.py index f694f6d..1d4f595 100755 --- a/buildpdf.py +++ b/buildpdf.py @@ -551,7 +551,10 @@ def createCover(): fil = open(path,'wb') fil.write(data) fil.close() - os.system('inkscape --export-pdf='+os.path.join(FOLDER,'Cover.pdf')+' '+os.path.join(FOLDER,'Cover.svg')) + if os.system('inkscape --export-pdf='+os.path.join(FOLDER,'Cover.pdf')+' '+os.path.join(FOLDER,'Cover.svg')) == 0: + return + else: + raise Exception('Conversion of Cover.svg to Cover.pdf failed. Is Inkscape installed?') if __name__ == "__main__":