diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-09-28 16:35:53 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-09-28 16:35:53 -0400 |
commit | f1e3ae3c49b9424a7e3cdbf835651720cc60e143 (patch) | |
tree | 08020414a4bf3150d6be7a58e4b96f45dd365071 /cloudinit/config/cc_ssh_authkey_fingerprints.py | |
parent | a7a9de1a079a70f5c8290ab5158661d3a33e5552 (diff) | |
download | vyos-cloud-init-f1e3ae3c49b9424a7e3cdbf835651720cc60e143.tar.gz vyos-cloud-init-f1e3ae3c49b9424a7e3cdbf835651720cc60e143.zip |
fix pep8 and pylint
Diffstat (limited to 'cloudinit/config/cc_ssh_authkey_fingerprints.py')
-rw-r--r-- | cloudinit/config/cc_ssh_authkey_fingerprints.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/config/cc_ssh_authkey_fingerprints.py b/cloudinit/config/cc_ssh_authkey_fingerprints.py index 2b9a6e0e..f9bdf5fc 100644 --- a/cloudinit/config/cc_ssh_authkey_fingerprints.py +++ b/cloudinit/config/cc_ssh_authkey_fingerprints.py @@ -95,4 +95,5 @@ def handle(name, cfg, cloud, log, _args): (users, _groups) = distros.normalize_users_groups(cfg, cloud.distro) for (user_name, _cfg) in users.items(): (auth_key_fn, auth_key_entries) = extract_func(user_name, cloud.paths) - _pprint_key_entries(user_name, auth_key_fn, auth_key_entries, hash_meth) + _pprint_key_entries(user_name, auth_key_fn, auth_key_entries, + hash_meth) |