fix bug in parsing

This commit is contained in:
Cayo Puigdefabregas 2025-02-19 12:07:02 +01:00
parent 2297d0b5bb
commit cb1da19acc

View file

@ -27,7 +27,7 @@ class BuildMix:
hid = ""
for f in algorithm:
if hasattr(self, f):
hid += getattr(self, f)
hid += getattr(self, f) or ''
return hid
def generate_chids(self):