summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
author howardchung <howardchung@google.com> 2022-08-16 17:06:17 +0800
committer howardchung <howardchung@google.com> 2022-08-30 18:33:27 +0800
commit63187b635be73b53bc7c0cb8a40f5d0b94c6cb18 (patch)
treed4dcf8d6ce761613d1e3b336199f0a3d5cb878d3 /build.py
parent4a691142d6f97ad99f0e62c7689d2dc93721e5ac (diff)
Floss: Fix a tiny typo in build.py warning
Missing .format Bug: None Test: run build.py --target aabbcc Tag: #floss Change-Id: I4957e65fa915409490ece53608374281dd019eae
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index b121cad667..e4cfd937d4 100755
--- a/build.py
+++ b/build.py
@@ -535,7 +535,7 @@ class HostBuild():
# Validate that the target is valid
if self.target not in VALID_TARGETS:
- print('Target {} is not valid. Must be in {}', self.target, VALID_TARGETS)
+ print('Target {} is not valid. Must be in {}'.format(self.target, VALID_TARGETS))
return
if self.target == 'prepare':