diff options
Diffstat (limited to 'cloudinit/config/cc_phone_home.py')
| -rw-r--r-- | cloudinit/config/cc_phone_home.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/config/cc_phone_home.py b/cloudinit/config/cc_phone_home.py index 5bc68b83..18a7ddad 100644 --- a/cloudinit/config/cc_phone_home.py +++ b/cloudinit/config/cc_phone_home.py @@ -81,7 +81,7 @@ def handle(name, cfg, cloud, log, args):          'pub_key_ecdsa': '/etc/ssh/ssh_host_ecdsa_key.pub',      } -    for (n, path) in pubkeys.iteritems(): +    for (n, path) in pubkeys.items():          try:              all_keys[n] = util.load_file(path)          except: @@ -99,7 +99,7 @@ def handle(name, cfg, cloud, log, args):      # Get them read to be posted      real_submit_keys = {} -    for (k, v) in submit_keys.iteritems(): +    for (k, v) in submit_keys.items():          if v is None:              real_submit_keys[k] = 'N/A'          else:  | 
