changeset 109:bd6215fa1d87

* ax_python_numpy.m4: Make trivially compatible with Python 3
author Mike Miller <mtmiller@octave.org>
date Sun, 20 Sep 2015 01:37:18 +0200
parents 74f17b2a5d45
children b0cc112a31d2
files m4/ax_python_numpy.m4
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/m4/ax_python_numpy.m4	Fri Sep 18 00:00:09 2015 -0400
+++ b/m4/ax_python_numpy.m4	Sun Sep 20 01:37:18 2015 +0200
@@ -53,7 +53,7 @@
 		NUMPY_INCLUDEDIR=`$PYTHON -c '
 try:
 	from numpy import get_include
-	print get_include()
+	print(get_include())
 except:
 	pass
 '`