[Bug 934515] [NEW] --meta key=value cannot accept '=' in value
Scott Moser
smoser at ubuntu.com
Fri Feb 17 21:28:35 UTC 2012
Public bug reported:
$ nova boot --image=$img_id --flavor=1 --meta=a=b=c myname
ERROR: dictionary update sequence element #0 has length 3; 2 is required
Simple fix is in novaclient/v1_1/shell.py '_boot' to do:
- meta = dict(v.split('=') for v in args.meta)
+ meta = dict(v.split('=',1) for v in args.meta)
** Affects: python-novaclient (Ubuntu)
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/934515
Title:
--meta key=value cannot accept '=' in value
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/934515/+subscriptions
More information about the Ubuntu-server-bugs
mailing list