Fix fail_json call in _mark_package_install

This commit is contained in:
ToBeReplaced 2015-09-21 22:50:52 -06:00
parent f56bd1c092
commit 0712d2f551

View file

@ -230,7 +230,7 @@ def _mark_package_install(module, base, pkg_spec):
try:
base.install(pkg_spec)
except exceptions.MarkingError:
module.fail(msg="No package {} available.".format(pkg_spec))
module.fail_json(msg="No package {} available.".format(pkg_spec))
def ensure(module, base, state, names):