From 9c483237a4494862a051db5931b7e75faaeb7713 Mon Sep 17 00:00:00 2001 From: dessant Date: Tue, 19 Aug 2014 15:35:20 +0300 Subject: [PATCH] fix print statement --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d992005..dbbbc28 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ try: except ImportError: from distutils.command.build_ext import build_ext if platform != 'android': - print '\n\nYou need Cython to compile Pyjnius.\n\n' + print('\n\nYou need Cython to compile Pyjnius.\n\n') raise files = [fn[:-3] + 'c' for fn in files if fn.endswith('pyx')]