Skip to content

Commit 069f6cd

Browse files
committed
Merge branch 'fix_pymodules_py3'
2 parents 2128dab + b8c8dcb commit 069f6cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def build_recipes(build_order, python_modules, ctx):
584584

585585

586586
def run_pymodules_install(ctx, modules):
587-
modules = filter(ctx.not_has_package, modules)
587+
modules = list(filter(ctx.not_has_package, modules))
588588

589589
if not modules:
590590
info('There are no Python modules to install, skipping')

0 commit comments

Comments
 (0)