server/sqlutils.py
changeset 10662 10942ed172de
parent 10651 9ca33768473c
child 10760 c34bbdb18745
--- a/server/sqlutils.py	Tue Sep 08 18:04:57 2015 +0200
+++ b/server/sqlutils.py	Tue Sep 15 16:15:03 2015 +0200
@@ -373,7 +373,7 @@
     def merge_args(self, args, query_args):
         if args is not None:
             newargs = {}
-            for key, val in args.iteritems():
+            for key, val in args.items():
                 # convert cubicweb binary into db binary
                 if isinstance(val, Binary):
                     val = self._binary(val.getvalue())
@@ -444,7 +444,7 @@
         attrs = {}
         eschema = entity.e_schema
         converters = getattr(self.dbhelper, 'TYPE_CONVERTERS', {})
-        for attr, value in entity.cw_edited.iteritems():
+        for attr, value in entity.cw_edited.items():
             if value is not None and eschema.subjrels[attr].final:
                 atype = str(entity.e_schema.destination(attr))
                 if atype in converters: