summaryrefslogtreecommitdiff
path: root/numpy/distutils/lib2def.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/lib2def.py')
-rw-r--r--numpy/distutils/lib2def.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/lib2def.py b/numpy/distutils/lib2def.py
index b2c4f1f28..7316547a3 100644
--- a/numpy/distutils/lib2def.py
+++ b/numpy/distutils/lib2def.py
@@ -1,4 +1,4 @@
-from __future__ import division, absolute_import
+from __future__ import division, absolute_import, print_function
import re
import sys
@@ -48,8 +48,8 @@ libfile, deffile = parse_cmd()"""
elif sys.argv[1][-4:] == '.def' and sys.argv[2][-4:] == '.lib':
deffile, libfile = sys.argv[1:]
else:
- print "I'm assuming that your first argument is the library"
- print "and the second is the DEF file."
+ print("I'm assuming that your first argument is the library")
+ print("and the second is the DEF file.")
elif len(sys.argv) == 2:
if sys.argv[1][-4:] == '.def':
deffile = sys.argv[1]