summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2022-09-05 06:26:54 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-09-05 06:26:54 +0000
commit45fbace7920cf57a3a2e293c09944223e82dced1 (patch)
tree45a3454c5ceaff91facb79d94c69b1e70138244a /build.py
parent8016056576bbbb868513f4bb60a737582a9c4eab (diff)
parent63187b635be73b53bc7c0cb8a40f5d0b94c6cb18 (diff)
Merge "Floss: Fix a tiny typo in build.py warning"
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 801c14759c..65fcc0a5fa 100755
--- a/build.py
+++ b/build.py
@@ -542,7 +542,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':