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/config/cc_apt_configure.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/config/cc_apt_configure.py')
-rw-r--r-- | cloudinit/config/cc_apt_configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/config/cc_apt_configure.py b/cloudinit/config/cc_apt_configure.py index 96c4a43d..05ad4b03 100644 --- a/cloudinit/config/cc_apt_configure.py +++ b/cloudinit/config/cc_apt_configure.py @@ -208,8 +208,9 @@ def add_apt_sources(srclist, template_params=None, aa_repo_match=None): template_params = {} if aa_repo_match is None: - def aa_repo_match(x): + def _aa_repo_match(x): return False + aa_repo_match = _aa_repo_match errorlist = [] srcdict = convert_to_new_format(srclist) |