diff -r fdaa0e4b7eaf -r 7c23b7de2b8d devtools/fill.py --- a/devtools/fill.py Fri Sep 11 14:28:06 2015 +0200 +++ b/devtools/fill.py Fri Sep 11 14:52:09 2015 +0200 @@ -17,6 +17,7 @@ # You should have received a copy of the GNU Lesser General Public License along # with CubicWeb. If not, see . """This modules defines func / methods for creating test repositories""" +from __future__ import print_function __docformat__ = "restructuredtext en" @@ -363,7 +364,7 @@ rql += ', %s is %s' % (selectvar, objtype) rset = cnx.execute(rql) except Exception: - print "could restrict eid_list with given constraints (%r)" % constraints + print("could restrict eid_list with given constraints (%r)" % constraints) return [] return set(eid for eid, in rset.rows)