Skip to content

Commit 55cbbbe

Browse files
committed
Fix help message of image add project
Only with the admin role you can use the project name with 'image add project'. With the normal member role you have to use the project id instead. If you try to use the name, you don't receive an error, but it won't work. Change-Id: I2d11c07a256917d12c46a7c302c5a5e8752a1df0 Task: 29543 Story: 2002535
1 parent 0a18790 commit 55cbbbe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/image/v2/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def get_parser(self, prog_name):
8686
parser.add_argument(
8787
"project",
8888
metavar="<project>",
89-
help=_("Project to associate with image (name or ID)"),
89+
help=_("Project to associate with image (ID)"),
9090
)
9191
common.add_project_domain_option_to_parser(parser)
9292
return parser

0 commit comments

Comments
 (0)