Skip to content
Snippets Groups Projects

Fix KeyError for SVG without xmlns tag

Merged Romain requested to merge rmnvgr/mat2:fix-key-error-for-svg-without-xmlns into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -41,7 +41,7 @@ class SVGParser(exiftool.ExiftoolParser):
# The namespace is mandatory, but only the …/2000/svg is valid.
ns = 'http://www.w3.org/2000/svg'
if meta.get('Xmlns', ns) == ns:
if meta.get('Xmlns') == ns:
meta.pop('Xmlns')
return meta
Loading