Typo in line 39

In line 39 it must be written "if" instead of "in"
This commit is contained in:
nklever 2012-08-24 00:45:16 +03:00
parent 18a41bf7a2
commit 4df5609f6d
1 changed files with 1 additions and 1 deletions

View File

@ -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...