rewrite correction to use new history tracker

This commit is contained in:
Luke Rogers 2014-02-28 13:59:31 +13:00
parent 914bc255ab
commit b9bf09e6b6
2 changed files with 25 additions and 25 deletions

View file

@ -35,7 +35,7 @@ def track_history(input, message_time, bot):
bot.history[input.chan] = deque(maxlen=1000)
history = bot.history[input.chan]
data = (input.nick.lower(), message_time, input.msg)
data = (input.nick, message_time, input.msg)
history.append(data)