summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cloudinit/transforms/cc_chef.py2
-rw-r--r--cloudinit/transforms/cc_ssh.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/transforms/cc_chef.py b/cloudinit/transforms/cc_chef.py
index 473e5f8b..31bfb85f 100644
--- a/cloudinit/transforms/cc_chef.py
+++ b/cloudinit/transforms/cc_chef.py
@@ -69,7 +69,7 @@ def handle(name, cfg, cloud, log, _args):
initial_json['run_list'] = chef_cfg['run_list']
if 'initial_attributes' in chef_cfg:
initial_attributes = chef_cfg['initial_attributes']
- for k in initial_attributes.keys():
+ for k in list(initial_attributes.keys()):
initial_json[k] = initial_attributes[k]
util.write_file('/etc/chef/firstboot.json', json.dumps(initial_json))
diff --git a/cloudinit/transforms/cc_ssh.py b/cloudinit/transforms/cc_ssh.py
index 3c2b3622..f5c22e28 100644
--- a/cloudinit/transforms/cc_ssh.py
+++ b/cloudinit/transforms/cc_ssh.py
@@ -66,7 +66,7 @@ def handle(_name, cfg, cloud, log, _args):
tgt_perms = key2file[key][1]
util.write_file(tgt_fn, val, tgt_perms)
- for priv, pub in priv2pub.iteritems():
+ for (priv, pub) in priv2pub.iteritems():
if pub in cfg['ssh_keys'] or not priv in cfg['ssh_keys']:
continue
pair = (key2file[priv][0], key2file[pub][0])