Do not ignore error from calling Inkscape
This commit is contained in:
parent
57521f129a
commit
15e98ff2cf
|
@ -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__":
|
||||
|
|
Loading…
Reference in New Issue
Block a user