manifest: fix ManifestProject __repr__

There's no reason to print the name; it's always "manifest".

And even if we were going to print the name, it should have been
quoted, so anyway this behavior is wrong.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2022-03-17 16:35:58 -07:00 committed by Marti Bolivar
parent 638b072f60
commit 2add80a43c
1 changed files with 1 additions and 1 deletions

View File

@ -994,7 +994,7 @@ class ManifestProject(Project):
'''
def __repr__(self):
return (f'ManifestProject({self.name}, path={repr(self.path)}, '
return (f'ManifestProject(path={repr(self.path)}, '
f'west_commands={self.west_commands}, '
f'topdir={repr(self.topdir)})')