From bee85b21cb5a7263d09e9ea58081c1c4cac55089 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Thu, 3 Dec 2009 15:57:50 +0000 Subject: Fix print statements in fcompiler for python3. --- numpy/distutils/fcompiler/pg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils/fcompiler/pg.py') diff --git a/numpy/distutils/fcompiler/pg.py b/numpy/distutils/fcompiler/pg.py index 8ce77abc0..60c7f4e4b 100644 --- a/numpy/distutils/fcompiler/pg.py +++ b/numpy/distutils/fcompiler/pg.py @@ -38,4 +38,4 @@ if __name__ == '__main__': from numpy.distutils.fcompiler import new_fcompiler compiler = new_fcompiler(compiler='pg') compiler.customize() - print compiler.get_version() + print(compiler.get_version()) -- cgit v1.2.1