diff options
author | Nate House nathan.house@rackspace.com <> | 2014-01-27 16:34:35 -0600 |
---|---|---|
committer | Nate House nathan.house@rackspace.com <> | 2014-01-27 16:34:35 -0600 |
commit | 79d1eccc9fa751325fcb574fd9385a14bf2bbba6 (patch) | |
tree | 779f3570e484fa1d218d40ded165c65f5f61790d /cloudinit/config/cc_yum_add_repo.py | |
parent | 309457a96a84132d2e570bf902c464b2a1aa9d0b (diff) | |
download | vyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.tar.gz vyos-cloud-init-79d1eccc9fa751325fcb574fd9385a14bf2bbba6.zip |
Removed excessive is_excluded module calls
Diffstat (limited to 'cloudinit/config/cc_yum_add_repo.py')
-rw-r--r-- | cloudinit/config/cc_yum_add_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_yum_add_repo.py b/cloudinit/config/cc_yum_add_repo.py index 93b570a0..f63e3e08 100644 --- a/cloudinit/config/cc_yum_add_repo.py +++ b/cloudinit/config/cc_yum_add_repo.py @@ -58,7 +58,7 @@ def _format_repository_config(repo_id, repo_config): def handle(name, cfg, _cloud, log, _args): - if _cloud.is_excluded(name): + if _cloud.distro.is_excluded(name): return repos = cfg.get('yum_repos') if not repos: |