Merge pull request #1371 from BigRoy/enhancement/plugin_discover_get_report_show_plugin_names

`DiscoverResult.get_report`: Report the actual class name for plugins list
This commit is contained in:
Jakub Trllo 2025-07-14 22:04:23 +02:00 committed by GitHub
commit d1c6831a4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,7 @@ class DiscoverResult:
"*** Discovered {} plugins".format(len(self.plugins))
)
for cls in self.plugins:
lines.append("- {}".format(cls.__class__.__name__))
lines.append("- {}".format(cls.__name__))
# Plugin that were defined to be ignored
if self.ignored_plugins or full_report: