view.py
changeset 10669 155c29e0ed1c
parent 10666 7f6b5f023884
--- a/view.py	Tue Sep 15 17:10:58 2015 +0200
+++ b/view.py	Fri Sep 18 14:29:53 2015 +0200
@@ -215,7 +215,7 @@
             return self._cw.build_url('view', vid=self.__regid__)
         coltypes = rset.column_types(0)
         if len(coltypes) == 1:
-            etype = iter(coltypes).next()
+            etype = next(iter(coltypes))
             if not self._cw.vreg.schema.eschema(etype).final:
                 if len(rset) == 1:
                     entity = rset.get_entity(0, 0)
@@ -283,7 +283,7 @@
             else :
                 etypes = rset.column_types(0)
                 if len(etypes) == 1:
-                    etype = iter(etypes).next()
+                    etype = next(iter(etypes))
                     clabel = display_name(self._cw, etype, 'plural')
                 else :
                     clabel = u'#[*] (%s)' % vtitle