Fix an AttributeError

This commit is contained in:
Dave Halter
2019-05-31 17:44:03 +02:00
parent d6c89ced99
commit 190793d82f

View File

@@ -181,7 +181,7 @@ class ComprehensionMixin(object):
yield LazyKnownContexts(set_) yield LazyKnownContexts(set_)
def __repr__(self): def __repr__(self):
return "<%s of %s>" % (type(self).__name__, self._atom) return "<%s of %s>" % (type(self).__name__, self._comp_for_node)
class _DictMixin(object): class _DictMixin(object):