fix print pdf when svg contains comments (#939)

pull/993/head
Kaalleen 2020-12-28 07:11:38 +01:00 zatwierdzone przez GitHub
rodzic 13ce739e77
commit 41c25ffe14
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -194,7 +194,7 @@ class Print(InkstitchExtension):
def strip_namespaces(self, svg): def strip_namespaces(self, svg):
# namespace prefixes seem to trip up HTML, so get rid of them # namespace prefixes seem to trip up HTML, so get rid of them
for element in svg.iter(): for element in svg.iter():
if element.tag[0] == '{': if type(element.tag) == str and element.tag[0] == '{':
element.tag = element.tag[element.tag.index('}', 1) + 1:] element.tag = element.tag[element.tag.index('}', 1) + 1:]
def render_svgs(self, stitch_plan, realistic=False): def render_svgs(self, stitch_plan, realistic=False):