diff options
author | 2022-09-05 06:26:54 +0000 | |
---|---|---|
committer | 2022-09-05 06:26:54 +0000 | |
commit | 45fbace7920cf57a3a2e293c09944223e82dced1 (patch) | |
tree | 45a3454c5ceaff91facb79d94c69b1e70138244a /build.py | |
parent | 8016056576bbbb868513f4bb60a737582a9c4eab (diff) | |
parent | 63187b635be73b53bc7c0cb8a40f5d0b94c6cb18 (diff) |
Merge "Floss: Fix a tiny typo in build.py warning"
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |