From f0b7777f5ee5b45d8d47b4d3e6b34047f438d80f Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Wed, 19 Feb 2014 14:25:52 -0500 Subject: [PATCH] Fix typo in doc string Change-Id: Id4338313db1977d31c3bb8ec2f966ca521c7206b --- savannaclient/api/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/savannaclient/api/shell.py b/savannaclient/api/shell.py index 365de531..126c81d6 100644 --- a/savannaclient/api/shell.py +++ b/savannaclient/api/shell.py @@ -149,7 +149,7 @@ def do_plugin_show(cs, args): # TODO(mattf): [--tag ]* def do_image_list(cs, args): - """Print a list of available plugins.""" + """Print a list of available images.""" images = cs.images.list() columns = ('name', 'id', 'username', 'tags', 'description') utils.print_list(images, columns, {'tags': _print_list_field('tags')})