From 4df5609f6dbb238809773d92d4e6eab6089176f5 Mon Sep 17 00:00:00 2001 From: nklever Date: Fri, 24 Aug 2012 00:45:16 +0300 Subject: [PATCH] Typo in line 39 In line 39 it must be written "if" instead of "in" --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d12ef5b..b7a985d 100644 --- a/setup.py +++ b/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...