diff --git a/nodes.py b/nodes.py index 8d097456fa5b90d5a51e2ecca5bd2c962d82c3d5_bm9kZXMucHk=..7e89c67363824ef31785cfab4987cbdc1268181b_bm9kZXMucHk= 100644 --- a/nodes.py +++ b/nodes.py @@ -926,7 +926,6 @@ rtype = rel.r_type lhs, rhs = rel.get_variable_parts() # use getattr, may not be a variable ref (rewritten, constant...) - lhsvar = getattr(lhs, 'variable', None) rhsvar = getattr(rhs, 'variable', None) if mainindex is not None: # relation to the main variable, stop searching @@ -930,5 +929,6 @@ rhsvar = getattr(rhs, 'variable', None) if mainindex is not None: # relation to the main variable, stop searching - if mainindex in lhsvar.stinfo['selected']: + lhsvar = getattr(lhs, 'variable', None) + if lhsvar is not None and mainindex in lhsvar.stinfo['selected']: return tr(rtype) @@ -934,5 +934,5 @@ return tr(rtype) - if mainindex in rhsvar.stinfo['selected']: + if rhsvar is not None and mainindex in rhsvar.stinfo['selected']: if schema is not None and rschema.symmetric: return tr(rtype) return tr(rtype + '_object')