fix bug in parsing

This commit is contained in:
Cayo Puigdefabregas 2025-02-19 12:07:02 +01:00 committed by pedro
parent 85a3575728
commit 9b183062ad

View file

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