diff -r fdaa0e4b7eaf -r 7c23b7de2b8d server/serverconfig.py --- a/server/serverconfig.py Fri Sep 11 14:28:06 2015 +0200 +++ b/server/serverconfig.py Fri Sep 11 14:52:09 2015 +0200 @@ -16,6 +16,7 @@ # You should have received a copy of the GNU Lesser General Public License along # with CubicWeb. If not, see . """server.serverconfig definition""" +from __future__ import print_function __docformat__ = "restructuredtext en" @@ -276,7 +277,7 @@ assert len(self.sources_mode) == 1 if source.connect_for_migration: return True - print 'not connecting to source', source.uri, 'during migration' + print('not connecting to source', source.uri, 'during migration') return False if 'all' in self.sources_mode: assert len(self.sources_mode) == 1