summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Farrellee <matt@redhat.com>2014-01-13 16:04:31 -0500
committerMatthew Farrellee <matt@redhat.com>2014-01-13 16:04:31 -0500
commit16ed8144d7c54864a11d45fb638109387d255e51 (patch)
tree5b1227e6e6a93840ee4eb2bc60b10aa770add24d
parent3b7d72cf033f7dfcf4da5710bab5897efb164cce (diff)
downloadpython-saharaclient-16ed8144d7c54864a11d45fb638109387d255e51.tar.gz
Clean up versions display in plugins-show
Change-Id: I7c9a0a19a8f1ce538c7e4df8522df8b4292c51fa
-rw-r--r--savannaclient/api/shell.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/savannaclient/api/shell.py b/savannaclient/api/shell.py
index e7c6e26..5697254 100644
--- a/savannaclient/api/shell.py
+++ b/savannaclient/api/shell.py
@@ -54,6 +54,7 @@ def do_plugins_list(cs, args):
def do_plugins_show(cs, args):
"""Show details of a plugin."""
plugin = cs.plugins.get(args.name)
+ plugin._info['versions'] = ', '.join(plugin._info['versions'])
utils.print_dict(plugin._info)