diff options
author | 2022-08-16 17:06:17 +0800 | |
---|---|---|
committer | 2022-08-30 18:33:27 +0800 | |
commit | 63187b635be73b53bc7c0cb8a40f5d0b94c6cb18 (patch) | |
tree | d4dcf8d6ce761613d1e3b336199f0a3d5cb878d3 /build.py | |
parent | 4a691142d6f97ad99f0e62c7689d2dc93721e5ac (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-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |