diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-16 07:38:41 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-16 07:38:41 -0700 |
commit | 611d0cdecbf7b15713824be484e8e91ca889839d (patch) | |
tree | 57d6f0707d523eb363e7ba50b6d9268faf4a655f /cloudinit/transforms/cc_ssh.py | |
parent | 4a328b5629db121accd81de9ced4c4d69b038f9a (diff) | |
download | vyos-cloud-init-611d0cdecbf7b15713824be484e8e91ca889839d.tar.gz vyos-cloud-init-611d0cdecbf7b15713824be484e8e91ca889839d.zip |
Some simple fixes that will make the python 3 translation easier
Diffstat (limited to 'cloudinit/transforms/cc_ssh.py')
-rw-r--r-- | cloudinit/transforms/cc_ssh.py | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |