mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-16 23:13:05 +00:00
metadata is one word
Change-Id: I2baff95c9b6dcc95edf5d5da74814ff37883cd2b
This commit is contained in:
parent
95bf187a4f
commit
3641b03690
1 changed files with 2 additions and 2 deletions
|
|
@ -149,7 +149,7 @@ class CreateServer(show.ShowOne):
|
|||
metavar='<key-name>',
|
||||
help='Keypair to inject into this server (optional extension)')
|
||||
parser.add_argument(
|
||||
'--meta-data',
|
||||
'--metadata',
|
||||
metavar='<key=value>',
|
||||
action='append',
|
||||
default=[],
|
||||
|
|
@ -229,7 +229,7 @@ class CreateServer(show.ShowOne):
|
|||
|
||||
boot_args = [parsed_args.server_name, image, flavor]
|
||||
|
||||
meta = dict(v.split('=', 1) for v in parsed_args.meta_data)
|
||||
meta = dict(v.split('=', 1) for v in parsed_args.metadata)
|
||||
|
||||
files = {}
|
||||
for f in parsed_args.file:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue