On 06/18/2016 12:27 PM, Sergei Trofimovich wrote: > + if in_any_of and atom.slot_operator: > + qatracker.add_error("dependency.badslotop", > relative_path + > + ": %s: '%s' uses ':=' slot operator under '||' > dep clause." % > + (mytype, atom))
It should be like this: if in_any_of and atom.slot_operator == '=': Because the case of atom.slot_operator == '*' is not forbidden. -- Thanks, Zac