virsh: Fix help for net-port-delete

Apparently a copy/paste error. The net-port-delete help string was in
fact from net-port-dumpxml.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1747826

Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Jonathon Jongsma 2019-09-03 11:47:29 -05:00 committed by Laine Stump
parent 6ecc9df89b
commit 7d5f0fda30

View File

@ -1593,10 +1593,10 @@ cmdNetworkPortDumpXML(vshControl *ctl, const vshCmd *cmd)
*/
static const vshCmdInfo info_network_port_delete[] = {
{.name = "help",
.data = N_("network port information in XML")
.data = N_("delete the specified network port")
},
{.name = "desc",
.data = N_("Output the network port information as an XML dump to stdout.")
.data = N_("Delete the specified network port.")
},
{.name = NULL}
};