mirror of https://github.com/kivy/pyjnius.git
fix print statement
This commit is contained in:
parent
f5b555d3d2
commit
9c483237a4
2
setup.py
2
setup.py
|
@ -34,7 +34,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from distutils.command.build_ext import build_ext
|
from distutils.command.build_ext import build_ext
|
||||||
if platform != 'android':
|
if platform != 'android':
|
||||||
print '\n\nYou need Cython to compile Pyjnius.\n\n'
|
print('\n\nYou need Cython to compile Pyjnius.\n\n')
|
||||||
raise
|
raise
|
||||||
files = [fn[:-3] + 'c' for fn in files if fn.endswith('pyx')]
|
files = [fn[:-3] + 'c' for fn in files if fn.endswith('pyx')]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue