summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-06-15 10:46:59 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2015-06-15 10:46:59 -0700
commit08c17814fb48be494e09909fd866d6bec3d61ff8 (patch)
tree237a3f17cfc66580a21e232451a3a5670f923cdd
parentef7a75938a657792ba67d74e686371251b2709ad (diff)
downloadansible-modules-core-08c17814fb48be494e09909fd866d6bec3d61ff8.tar.gz
Fix incorrect line breaking
-rw-r--r--packaging/os/yum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/os/yum.py b/packaging/os/yum.py
index ece8b240..6e2b61a1 100644
--- a/packaging/os/yum.py
+++ b/packaging/os/yum.py
@@ -833,8 +833,8 @@ def ensure(module, state, pkgs, conf_file, enablerepo, disablerepo,
res = latest(module, pkgs, repoq, yum_basecmd, conf_file, en_repos, dis_repos)
else:
# should be caught by AnsibleModule argument_spec
- module.fail_json(msg="we should never get here unless this all
- failed", changed=False, results='', errors='unepected state')
+ module.fail_json(msg="we should never get here unless this all"
+ " failed", changed=False, results='', errors='unepected state')
return res