Skip to content

Commit a16cd60

Browse files
committed
Fix missing renames of Bootstrap.list_bootstraps -> Bootstrap.all_bootstraps
1 parent 9b608e8 commit a16cd60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/toolchain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ def recipes(self, args):
785785

786786
def bootstraps(self, _args):
787787
"""List all the bootstraps available to build with."""
788-
for bs in Bootstrap.list_bootstraps():
788+
for bs in Bootstrap.all_bootstraps():
789789
bs = Bootstrap.get_bootstrap(bs, self.ctx)
790790
print('{Fore.BLUE}{Style.BRIGHT}{bs.name}{Style.RESET_ALL}'
791791
.format(bs=bs, Fore=Out_Fore, Style=Out_Style))
@@ -828,7 +828,7 @@ def clean_bootstrap_builds(self, _args):
828828
"""Delete all the bootstrap builds."""
829829
if exists(join(self.ctx.build_dir, 'bootstrap_builds')):
830830
shutil.rmtree(join(self.ctx.build_dir, 'bootstrap_builds'))
831-
# for bs in Bootstrap.list_bootstraps():
831+
# for bs in Bootstrap.all_bootstraps():
832832
# bs = Bootstrap.get_bootstrap(bs, self.ctx)
833833
# if bs.build_dir and exists(bs.build_dir):
834834
# info('Cleaning build for {} bootstrap.'.format(bs.name))

0 commit comments

Comments
 (0)