🐛 Produce a text attribute even if the attribute has no value

feat/alto
Gerber, Mike 2 years ago
parent c85356bd23
commit 6a549968b5

@ -55,7 +55,8 @@ class TagGroup:
for e in self.group:
if t != '':
t += separator
t += e.text
if e.text:
t += e.text
return t
def text_set(self):

Loading…
Cancel
Save