Fix #2761: gce.py - UnboundLocalError: local variable 'md'
This commit is contained in:
parent
072c68ea79
commit
e16367739e
1 changed files with 7 additions and 7 deletions
|
@ -404,13 +404,13 @@ def create_instances(module, gce, instance_names):
|
|||
except SyntaxError as e:
|
||||
module.fail_json(msg='bad metadata syntax')
|
||||
|
||||
if hasattr(libcloud, '__version__') and libcloud.__version__ < '0.15':
|
||||
items = []
|
||||
for k, v in md.items():
|
||||
items.append({"key": k, "value": v})
|
||||
metadata = {'items': items}
|
||||
else:
|
||||
metadata = md
|
||||
if hasattr(libcloud, '__version__') and libcloud.__version__ < '0.15':
|
||||
items = []
|
||||
for k, v in md.items():
|
||||
items.append({"key": k, "value": v})
|
||||
metadata = {'items': items}
|
||||
else:
|
||||
metadata = md
|
||||
|
||||
lc_image = LazyDiskImage(module, gce, image, lc_disks)
|
||||
ex_sa_perms = []
|
||||
|
|
Loading…
Reference in a new issue