From: Clyde F. <cly...@gm...> - 2013-11-07 10:23:43
|
Hi, In the latest revision python 2.x compatibility is broken by line 496 in regression.py: print(" %s..." % fname, end=" ") 2.x compatibility can be reinstated by adding the import: from __future__ import print_function Clyde |