From f0f1dc985ff7a02b0c55623848285be1de9470d4 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Mon, 15 Jun 2015 10:46:59 -0700 Subject: [PATCH] Fix incorrect line breaking --- lib/ansible/modules/packaging/os/yum.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/packaging/os/yum.py b/lib/ansible/modules/packaging/os/yum.py index 87c4d28c031..4b271b35d99 100644 --- a/lib/ansible/modules/packaging/os/yum.py +++ b/lib/ansible/modules/packaging/os/yum.py @@ -843,8 +843,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