diff options
author | Cyril Roelandt <cyril@redhat.com> | 2023-04-18 02:40:54 +0200 |
---|---|---|
committer | Cyril Roelandt <cyril@redhat.com> | 2023-04-18 03:21:03 +0200 |
commit | e2190c4feb7b237c55a5d7df49e0db340a9d342f (patch) | |
tree | fe15738197436b6f935329458c6d2d07cbf34ca5 /doc/source | |
parent | 52fb6b29d84644c690c0b8566117c4bfb963b09b (diff) | |
download | python-glanceclient-e2190c4feb7b237c55a5d7df49e0db340a9d342f.tar.gz |
do_image_import: fix argument retrieval
The argparse module automatically replaces '-' characters with '_'
characters when converting an option string to an attribute:
«For optional argument actions, the value of dest is normally inferred
from the option strings. ArgumentParser generates the value of dest by
taking the first long option string and stripping away the initial --
string. If no long option strings were supplied, dest will be derived
from the first short option string by stripping the initial - character.
Any internal - characters will be converted to _ characters to make sure
the string is a valid attribute name.»[1]
This means that the value of the "--remote-region" option of the
"image-import" command will be available as "args.remote_region";
"remote-region" would not be a valid attribute anyway.
We make sure to retrieve the proper value for the following
options: --remote-region, --remote-image-id and
--remote-service-interface.
[1] https://docs.python.org/3/library/argparse.html#dest
Change-Id: I1d8c69acd5d61fdc426469cd87d1ace81871e60f
Partial-Bug: #2012442
Diffstat (limited to 'doc/source')
0 files changed, 0 insertions, 0 deletions