From c16a13495d3e64edce4086941d95c0f3e41cc77b Mon Sep 17 00:00:00 2001 From: Riccardo Schirone Date: Tue, 20 Sep 2016 14:22:38 +0000 Subject: [PATCH] bindings/python: fix install3 --- bindings/python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 584257ec..155b524a 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # Python binding for Unicorn engine. Nguyen Anh Quynh +from __future__ import print_function import glob import os import shutil @@ -162,7 +163,7 @@ try: cmdclass['develop'] = custom_develop except ImportError: - print "Proper 'develop' support unavailable." + print("Proper 'develop' support unavailable.") def join_all(src, files): return tuple(os.path.join(src, f) for f in files)