From 66c8eda42424f879e5c27c62b176a03c43fa388a Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 1 Jul 2019 03:48:58 -0400 Subject: [PATCH] Fix Inkscape labels not being read from helper.py. --- helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.py b/helper.py index 690019e4..686ad2ac 100755 --- a/helper.py +++ b/helper.py @@ -277,7 +277,7 @@ def panel_to_components(tree): for el in circles + rects: c = {} # Get name - name = el.get('inkscape:label') + name = el.get('{http://www.inkscape.org/namespaces/inkscape}label') if name is None: name = el.get('id') name = slug_to_identifier(name).upper()