From 580968ca772cbc95f5d9e560c4c2b6389417b0e0 Mon Sep 17 00:00:00 2001 From: Bruno BAILLUET Date: Fri, 12 Sep 2014 18:19:00 +0200 Subject: [PATCH] Fix a typo on is_update call inside latest function --- library/packaging/yum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/packaging/yum b/library/packaging/yum index 245d3b8020a..c3158077d18 100644 --- a/library/packaging/yum +++ b/library/packaging/yum @@ -672,7 +672,7 @@ def latest(module, items, repoq, yum_basecmd, conf_file, en_repos, dis_repos): nothing_to_do = False break - if basecmd == 'update' and is_update(module, repoq, this, conf_file, en_repos=en_repos, dis_repos=en_repos): + if basecmd == 'update' and is_update(module, repoq, this, conf_file, en_repos=en_repos, dis_repos=dis_repos): nothing_to_do = False break