web/views/uicfg.py
changeset 10662 10942ed172de
parent 10612 84468b90e9c1
child 10663 54b8a1f249fb
--- a/web/views/uicfg.py	Tue Sep 08 18:04:57 2015 +0200
+++ b/web/views/uicfg.py	Tue Sep 15 16:15:03 2015 +0200
@@ -269,7 +269,7 @@
         if not 'inlined' in sectdict:
             sectdict['inlined'] = sectdict['main']
         # recompute formsections and set it to avoid recomputing
-        for formtype, section in sectdict.iteritems():
+        for formtype, section in sectdict.items():
             formsections.add('%s_%s' % (formtype, section))
 
     def tag_relation(self, key, formtype, section):
@@ -304,7 +304,7 @@
                 rtags[section] = value
         cls = self.tag_container_cls
         rtags = cls('_'.join([section,value])
-                    for section,value in rtags.iteritems())
+                    for section,value in rtags.items())
         return rtags
 
     def get(self, *key):