Merge pull request #20 from nklever/patch-1

Typo in line 39
This commit is contained in:
Gabriel Pettier 2012-08-23 14:46:08 -07:00
commit 3651d1ac20
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ except ImportError:
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 in fn.endswith('pyx')] files = [fn[:-3] + 'c' for fn in files if fn.endswith('pyx')]
if platform == 'android': if platform == 'android':
# for android, we use SDL... # for android, we use SDL...