project.py: fix an error message
Commit 639ce48
("commands: project: consolidate error handling
behavior") did some refactoring and error handling but got one of the
error messages wrong. Fix it.
Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
parent
f38ba9a88b
commit
42f4106f6f
|
@ -102,7 +102,7 @@ class _ProjectCommand(WestCommand):
|
|||
projects = ', '.join(f'{p.name}' for p in failed)
|
||||
log.err(f'{self.name} failed for project{s} {projects}')
|
||||
else:
|
||||
log.err('{command} failed for multiple projects; see above')
|
||||
log.err(f'{self.name} failed for multiple projects; see above')
|
||||
raise CommandError(1)
|
||||
|
||||
class Init(_ProjectCommand):
|
||||
|
|
Loading…
Reference in New Issue