Correct sleep calls

Looks like we import "from time import sleep" but were calling "time.sleep" which is scoped into the wrong namespace.
This commit is contained in:
Dave Rawks 2014-01-24 15:39:02 -08:00
parent fc30467593
commit e545d1026a

View file

@ -126,7 +126,7 @@ def send_msg(channel, msg, server='localhost', port='6667',
break
elif time.time() - start > timeout:
raise Exception('Timeout waiting for IRC server welcome response')
time.sleep(0.5)
sleep(0.5)
irc.send('JOIN %s\r\n' % channel)
join = ''
@ -137,13 +137,13 @@ def send_msg(channel, msg, server='localhost', port='6667',
break
elif time.time() - start > timeout:
raise Exception('Timeout waiting for IRC JOIN response')
time.sleep(0.5)
sleep(0.5)
irc.send('PRIVMSG %s :%s\r\n' % (channel, message))
time.sleep(1)
sleep(1)
irc.send('PART %s\r\n' % channel)
irc.send('QUIT\r\n')
time.sleep(1)
sleep(1)
irc.close()
# ===========================================