mirror of https://github.com/kivy/pyjnius.git
Typo in line 39
In line 39 it must be written "if" instead of "in"
This commit is contained in:
parent
18a41bf7a2
commit
4df5609f6d
2
setup.py
2
setup.py
|
@ -36,7 +36,7 @@ except ImportError:
|
|||
if platform != 'android':
|
||||
print '\n\nYou need Cython to compile Pyjnius.\n\n'
|
||||
raise
|
||||
files = [fn[:-3] + 'c' for fn in files in fn.endswith('pyx')]
|
||||
files = [fn[:-3] + 'c' for fn in files if fn.endswith('pyx')]
|
||||
|
||||
if platform == 'android':
|
||||
# for android, we use SDL...
|
||||
|
|
Loading…
Reference in New Issue