Merge "Add missing documentation for state options for "image set""

This commit is contained in:
Zuul 2023-02-22 12:53:01 +00:00 committed by Gerrit Code Review
commit 7c85f840f6

@ -1206,7 +1206,10 @@ class SetImage(command.Command):
const="accepted", const="accepted",
dest="membership", dest="membership",
default=None, default=None,
help=_("Accept the image membership"), help=_(
"Accept the image membership for either the project indicated "
"by '--project', if provided, or the current user's project"
),
) )
membership_group.add_argument( membership_group.add_argument(
"--reject", "--reject",
@ -1214,7 +1217,10 @@ class SetImage(command.Command):
const="rejected", const="rejected",
dest="membership", dest="membership",
default=None, default=None,
help=_("Reject the image membership"), help=_(
"Reject the image membership for either the project indicated "
"by '--project', if provided, or the current user's project"
),
) )
membership_group.add_argument( membership_group.add_argument(
"--pending", "--pending",