Skip to content

Commit 07cb721

Browse files
committed
Fixed formatting of build status output
1 parent a9e02d2 commit 07cb721

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
@@ -2846,7 +2846,7 @@ def logcat(self, args):
28462846

28472847
def build_status(self, args):
28482848

2849-
print('{Style.BRIGHT}Bootstraps whose core components are probably built:'
2849+
print('{Style.BRIGHT}Bootstraps whose core components are probably already built:'
28502850
'{Style.RESET_ALL}'.format(Style=Style))
28512851
for filen in os.listdir(join(self.ctx.build_dir, 'bootstrap_builds')):
28522852
print(' {Fore.GREEN}{Style.BRIGHT}{filen}{Style.RESET_ALL}'.format(
@@ -2863,7 +2863,7 @@ def build_status(self, args):
28632863
Style=Style, name=name, Fore=Fore))
28642864
if dependencies:
28652865
recipe_str += (' ({Fore.BLUE}with ' + ', '.join(dependencies) +
2866-
'){Fore.RESET}').format(Fore=Fore)
2866+
'{Fore.RESET})').format(Fore=Fore)
28672867
recipe_str += '{Style.RESET_ALL}'.format(Style=Style)
28682868
print(recipe_str)
28692869

0 commit comments

Comments
 (0)