diff -r e6eb0c7c2e98 -r 10942ed172de hooks/integrity.py --- a/hooks/integrity.py Tue Sep 08 18:04:57 2015 +0200 +++ b/hooks/integrity.py Tue Sep 15 16:15:03 2015 +0200 @@ -247,7 +247,7 @@ def __call__(self): entity = self.entity eschema = entity.e_schema - for attr, val in entity.cw_edited.iteritems(): + for attr, val in entity.cw_edited.items(): if eschema.subjrels[attr].final and eschema.has_unique_values(attr): if val is None: continue @@ -286,7 +286,7 @@ entity = self.entity metaattrs = entity.e_schema.meta_attributes() edited = entity.cw_edited - for metaattr, (metadata, attr) in metaattrs.iteritems(): + for metaattr, (metadata, attr) in metaattrs.items(): if metadata == 'format' and attr in edited: try: value = edited[attr]