entities/adapters.py
changeset 8900 010a59e12d89
parent 8801 86c1a5afbe4e
child 8930 6a02be304486
--- a/entities/adapters.py	Tue Apr 23 15:16:36 2013 +0200
+++ b/entities/adapters.py	Tue Apr 23 15:33:50 2013 +0200
@@ -330,7 +330,7 @@
             _done = set()
         for child in self.children():
             if child.eid in _done:
-                self.error('loop in %s tree: %s', child.__regid__.lower(), child)
+                self.error('loop in %s tree: %s', child.cw_etype.lower(), child)
                 continue
             yield child
             _done.add(child.eid)
@@ -357,7 +357,7 @@
         entity = adapter.entity
         while entity is not None:
             if entity.eid in path:
-                self.error('loop in %s tree: %s', entity.__regid__.lower(), entity)
+                self.error('loop in %s tree: %s', entity.cw_etype.lower(), entity)
                 break
             path.append(entity.eid)
             try: