scripts: update for inkscape 1.0

This commit is contained in:
Frédéric Péters 2021-02-21 20:05:58 +01:00
parent c4c2002d00
commit cdadf04e49
1 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,9 @@ for svg_path in args:
f.close()
svg_path = f.name
# XXX: add author to png metadata
subprocess.call(['inkscape', '--without-gui',
'--file', svg_path,
subprocess.call(['inkscape',
svg_path,
'--export-area-drawing',
'--export-area-snap',
'--export-png', output_filename,
'--export-filename', output_filename,
'--export-width', options.width])