diff options
| author | Chen Hanxiao <chenhx@certusnet.com.cn> | 2018-07-04 15:18:55 +0800 |
|---|---|---|
| committer | Chen Hanxiao <chenhx@certusnet.com.cn> | 2018-07-24 08:45:01 +0800 |
| commit | c159b5ccbc6f4d98f94cd96ad200ac317a8269ad (patch) | |
| tree | 198eb4a9bad5c383e34cadb070702d8766c300cf | |
| parent | 71abbfca2a5927d19ad5a7187bb2112e907b301a (diff) | |
| download | python-glanceclient-c159b5ccbc6f4d98f94cd96ad200ac317a8269ad.tar.gz | |
image-list: add checksum algorithm description
We use MD5 for checksum, add this description
in cli helps.
Change-Id: I3469b0dface63f4684ad39421eee4c2a2de4d80b
Signed-off-by: Chen Hanxiao <chenhx@certusnet.com.cn>
| -rw-r--r-- | doc/source/cli/details.rst | 2 | ||||
| -rw-r--r-- | glanceclient/v2/shell.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/cli/details.rst b/doc/source/cli/details.rst index 8b01266..f446aba 100644 --- a/doc/source/cli/details.rst +++ b/doc/source/cli/details.rst @@ -325,7 +325,7 @@ List images you can access. Filter images by a user-defined image property. ``--checksum <CHECKSUM>`` - Displays images that match the checksum. + Displays images that match the MD5 checksum. ``--tag <TAG>`` Filter images by a user-defined tag. diff --git a/glanceclient/v2/shell.py b/glanceclient/v2/shell.py index d837ba1..6771c96 100644 --- a/glanceclient/v2/shell.py +++ b/glanceclient/v2/shell.py @@ -247,7 +247,7 @@ def do_image_update(gc, args): help=_("Filter images by a user-defined image property."), action='append', dest='properties', default=[]) @utils.arg('--checksum', metavar='<CHECKSUM>', - help=_('Displays images that match the checksum.')) + help=_('Displays images that match the MD5 checksum.')) @utils.arg('--tag', metavar='<TAG>', action='append', help=_("Filter images by a user-defined tag.")) @utils.arg('--sort-key', default=[], action='append', |
