Skip to content

Commit 0d75510

Browse files
committed
Merge pull request #634 from mixedCase/master
Fixed missing else statement in for loop, allowing systems where cyth…
2 parents ff0ac73 + aab0e11 commit 0d75510

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pythonforandroid/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ def prepare_build_environment(self, user_sdk_dir, user_ndk_dir,
330330
if cython:
331331
self.cython = cython
332332
break
333-
self.cython = 'cython'
333+
else:
334+
self.cython = 'cython'
334335
if not self.cython:
335336
ok = False
336337
warning("Missing requirement: cython is not installed")

0 commit comments

Comments
 (0)