Updated package-import help description

Improved category metavar.
Removed incorrect note of possibility to use comma in categorie list
Added note about possibility to use -- to separate positional FILE
arguments from the rest of arguments.

Change-Id: Ia6e8f7c35bfb912d526db23a6bf8e766e7765187
Closes-Bug: #1478912
This commit is contained in:
Kirill Zaitsev 2015-08-06 15:56:30 +03:00
parent 92b30c30f4
commit b012ef2e16
1 changed files with 5 additions and 2 deletions

View File

@ -366,7 +366,7 @@ def _handle_package_exists(mc, data, package, exists_action):
@utils.arg('filename', metavar='<FILE>',
nargs='+',
help='URL of the murano zip package, FQPN, or path to zip package')
@utils.arg('-c', '--categories', metavar='<CAT1 CAT2 CAT3>', nargs='*',
@utils.arg('-c', '--categories', metavar='<CATEGORY>', nargs='*',
help='Category list to attach')
@utils.arg('--is-public', action='store_true', default=False,
help='Make the package available for users from other tenants')
@ -378,7 +378,10 @@ def _handle_package_exists(mc, data, package, exists_action):
def do_package_import(mc, args):
"""Import a package.
`FILE` can be either a path to a zip file, url or a FQPN.
`categories` can be separated by a comma.
You can use `--` to separate `FILE`s from other arguments.
Categories have to be separated with a space and have to be already
present in murano.
"""
data = {"is_public": args.is_public}