From 63187b635be73b53bc7c0cb8a40f5d0b94c6cb18 Mon Sep 17 00:00:00 2001 From: howardchung Date: Tue, 16 Aug 2022 17:06:17 +0800 Subject: Floss: Fix a tiny typo in build.py warning Missing .format Bug: None Test: run build.py --target aabbcc Tag: #floss Change-Id: I4957e65fa915409490ece53608374281dd019eae --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.py') 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': -- cgit v1.2.3-59-g8ed1b