1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-07 19:05:06 +02:00

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

This commit is contained in:
Gerber, Mike 2022-05-10 17:47:38 +02:00
parent c85356bd23
commit 6a549968b5

View file

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