Commit ead73336 by Matt Martz

module is not exposed to send_msg, but main() catches exceptions and uses module.fail_json

parent b48b22b2
......@@ -125,8 +125,7 @@ def send_msg(channel, msg, server='localhost', port='6667',
if re.search('^:\S+ 00[1-4] %s :' % nick, motd, flags=re.M):
break
elif time.time() - start > timeout:
module.fail_json(msg='Timeout waiting for IRC server welcome '
'response')
raise Exception('Timeout waiting for IRC server welcome response')
time.sleep(0.5)
irc.send('JOIN %s\r\n' % channel)
......@@ -137,7 +136,7 @@ def send_msg(channel, msg, server='localhost', port='6667',
if re.search('^:\S+ 366 %s %s :' % (nick, channel), join, flags=re.M):
break
elif time.time() - start > timeout:
module.fail_json(msg='Timeout waiting for IRC JOIN response')
raise Exception('Timeout waiting for IRC JOIN response')
time.sleep(0.5)
irc.send('PRIVMSG %s :%s\r\n' % (channel, message))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment