-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLI: Fix
verdi plugin list
incorrectly not displaying description (#…
…6411) The implementation would call `get_description` on the plugin to retrieve a verbose description and would catch the `AttributeError` in case the method was not defined. However, the conditional determining whether the plugin is a process or process function was flawed and it would always call `plugin.is_process_function` for plugins that were not processes. This would therefore raise an `AttributeError` for any other plugins besides process functions and so the command would always print that no additional information was available.
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters