diff options
Diffstat (limited to 'scripts/lib/wic/help.py')
-rw-r--r-- | scripts/lib/wic/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py index 158b6c1ae0..7dcc71740b 100644 --- a/scripts/lib/wic/help.py +++ b/scripts/lib/wic/help.py | |||
@@ -66,7 +66,7 @@ def get_wic_plugins_help(): | |||
66 | result = wic_plugins_help | 66 | result = wic_plugins_help |
67 | for plugin_type in PLUGIN_TYPES: | 67 | for plugin_type in PLUGIN_TYPES: |
68 | result += '\n\n%s PLUGINS\n\n' % plugin_type.upper() | 68 | result += '\n\n%s PLUGINS\n\n' % plugin_type.upper() |
69 | for name, plugin in pluginmgr.get_plugins(plugin_type).iteritems(): | 69 | for name, plugin in pluginmgr.get_plugins(plugin_type).items(): |
70 | result += "\n %s plugin:\n" % name | 70 | result += "\n %s plugin:\n" % name |
71 | if plugin.__doc__: | 71 | if plugin.__doc__: |
72 | result += plugin.__doc__ | 72 | result += plugin.__doc__ |