Excluded "Part" field from collisions.
Is natural for aliases.
This commit is contained in:
parent
36a01ee038
commit
c4833e198a
|
|
@ -218,7 +218,9 @@ class ComponentGroup(object):
|
|||
elif value.lower() in self.fields[field].lower():
|
||||
return
|
||||
else:
|
||||
if field != self.cfg.fit_field:
|
||||
# Config contains variant information, which is different for each component
|
||||
# Part can be one of the defined aliases
|
||||
if field != self.cfg.fit_field and field != 'part':
|
||||
logger.warning("Field conflict: ({refs}) [{name}] : '{flds}' <- '{fld}' (in {ref})".format(
|
||||
refs=self.get_refs(),
|
||||
name=field,
|
||||
|
|
|
|||
Loading…
Reference in New Issue