From 8f3b68d48ac043050f5481db42b8260f7ca81f86 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 14 Jul 2021 01:11:07 -0400 Subject: [PATCH] Mention multiple option for tags in VM define --- client-cli/pvc/pvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/pvc/pvc.py b/client-cli/pvc/pvc.py index 78d77384..80832654 100755 --- a/client-cli/pvc/pvc.py +++ b/client-cli/pvc/pvc.py @@ -641,12 +641,12 @@ def cli_vm(): @click.option( '-g', '--tag', 'user_tags', default=[], multiple=True, - help='User tag(s) for the VM.' + help='User tag for the VM; can be specified multiple times, once per tag.' ) @click.option( '-G', '--protected-tag', 'protected_tags', default=[], multiple=True, - help='Protected user tag(s) for the VM.' + help='Protected user tag for the VM; can be specified multiple times, once per tag.' ) @click.argument( 'vmconfig', type=click.File()