mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
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:
commit
d1c6831a4b
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue