From 2add80a43cea7fec3a86fd260a35f54c9c31717f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Thu, 17 Mar 2022 16:35:58 -0700 Subject: [PATCH] manifest: fix ManifestProject __repr__ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/west/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/west/manifest.py b/src/west/manifest.py index d22e6e6..16986f6 100644 --- a/src/west/manifest.py +++ b/src/west/manifest.py @@ -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)})')