cubicweb/hooks/syncschema.py
changeset 11763 39df042f4ab4
parent 11417 5e5e224239c3
child 11765 9cb215e833b0
--- a/cubicweb/hooks/syncschema.py	Fri Sep 30 17:34:11 2016 +0200
+++ b/cubicweb/hooks/syncschema.py	Fri Sep 30 17:39:17 2016 +0200
@@ -311,9 +311,9 @@
         self.info('renamed table %s to %s', oldname, newname)
         sqlexec('UPDATE entities SET type=%(newname)s WHERE type=%(oldname)s',
                 {'newname': newname, 'oldname': oldname})
-        for eid, (etype, extid, auri) in cnx.repo._type_source_cache.items():
+        for eid, (etype, extid) in cnx.repo._type_extid_cache.items():
             if etype == oldname:
-                cnx.repo._type_source_cache[eid] = (newname, extid, auri)
+                cnx.repo._type_extid_cache[eid] = (newname, extid)
         # recreate the indexes
         for rschema in eschema.subject_relations():
             if rschema.inlined or (rschema.final and eschema.rdef(rschema.type).indexed):