fix bug in parsing
This commit is contained in:
parent
85a3575728
commit
9b183062ad
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue