diff --git a/tools/virsh.c b/tools/virsh.c index de4876f78419f5292415dccf84fe6d780cf626b4..e07fef3e890f22197a9356d31d4e85b151460e41 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -9445,7 +9445,8 @@ vshCmddefHelp(vshControl *ctl, const char *cmdname) else if (opt->type == VSH_OT_STRING) snprintf(buf, sizeof(buf), _("--%s "), opt->name); else if (opt->type == VSH_OT_DATA) - snprintf(buf, sizeof(buf), "<%s>", opt->name); + snprintf(buf, sizeof(buf), _("[--%s] "), + opt->name); fprintf(stdout, " %-15s %s\n", buf, _(opt->help)); }