diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-06-15 22:50:12 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-06-15 22:50:12 -0400 |
commit | d4b587ebf500ddc2259fffc94a3c69c199c9a427 (patch) | |
tree | 987a743859aadb4bf2ad3daf0cc9e62afc92294c /cloudinit/distros/arch.py | |
parent | 8311e8f7a2d4ad782015c0eb4d22efd0c5a8af0f (diff) | |
download | vyos-cloud-init-d4b587ebf500ddc2259fffc94a3c69c199c9a427.tar.gz vyos-cloud-init-d4b587ebf500ddc2259fffc94a3c69c199c9a427.zip |
fix some errors reported by pylint
pylint --errors-only found several errors. Some of the changes
here represent real errors, others just code that pylint did
not like.
Diffstat (limited to 'cloudinit/distros/arch.py')
-rw-r--r-- | cloudinit/distros/arch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/distros/arch.py b/cloudinit/distros/arch.py index 93a2e008..66209f22 100644 --- a/cloudinit/distros/arch.py +++ b/cloudinit/distros/arch.py @@ -196,6 +196,6 @@ def convert_resolv_conf(settings): """Returns a settings string formatted for resolv.conf.""" result = '' if isinstance(settings, list): - for ns in list: + for ns in settings: result = result + 'nameserver %s\n' % ns - return result + return result |