From 827b2a4196e23c9117b5e975198e5de12e8314b1 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 28 Jul 2015 18:53:13 -0400 Subject: [PATCH] clarified xmpp lib to use --- notification/jabber.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/notification/jabber.py b/notification/jabber.py index 606287cd8e4..6d97e4232df 100644 --- a/notification/jabber.py +++ b/notification/jabber.py @@ -59,7 +59,8 @@ options: required: false # informational: requirements for nodes -requirements: [ xmpp ] +requirements: + - python xmpp (xmpppy) author: "Brian Coca (@bcoca)" ''' @@ -111,7 +112,7 @@ def main(): ) if not HAS_XMPP: - module.fail_json(msg="xmpp is not installed") + module.fail_json(msg="The required python xmpp library (xmpppy) is not installed") jid = xmpp.JID(module.params['user']) user = jid.getNode()