Index: gc_core/py/lang_core/gc_engine.py ================================================================== --- gc_core/py/lang_core/gc_engine.py +++ gc_core/py/lang_core/gc_engine.py @@ -694,15 +694,15 @@ if sMeta == "*": if bDebug: print(" MATCH: *" + sMeta) yield dGraph[dNode[""]["*"]] elif "¬" in sMeta: - if dNode["sType"] not in sMeta: + if dToken["sType"] not in sMeta: if bDebug: print(" MATCH: *" + sMeta) yield dGraph[dNode[""][sMeta]] - elif dNode["sType"] in sMeta: + elif dToken["sType"] in sMeta: if bDebug: print(" MATCH: *" + sMeta) yield dGraph[dNode[""][sMeta]]