Remove the extra 'g' in description for plugin show

The text is start with 'g' in the description field of plugin show.
Seems it is redundant, so remove it.

Change-Id: Id95d85ffcf35b683e7799d8a0c944a614968825f
This commit is contained in:
liyingjun 2016-01-28 10:49:27 +08:00
parent 7e5e4e36e3
commit d8698d1bc6
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class PluginCommands(object):
if plugin_info["parameters"]:
print("PARAMETERS")
rows = [utils.Struct(name=p["name"],
description="g%s\n" % p["doc"])
description="%s\n" % p["doc"])
for p in plugin_info["parameters"]]
cliutils.print_list(rows, fields=["name", "description"])
else: