Fix module params assignment in jabber module (#25850)

Fix corrects variable assignment from module params

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
(cherry picked from commit 561d678f52)
pull/25860/head
Abhijeet Kasurde 8 years ago committed by Rene Moser
parent a40b1c455d
commit e1dbb02b66

@ -137,7 +137,7 @@ def main():
else:
host = server
if module.params['encoding']:
xmpp.simplexml.ENCODING = params['encoding']
xmpp.simplexml.ENCODING = module.params['encoding']
msg = xmpp.protocol.Message(body=module.params['msg'])

Loading…
Cancel
Save