upgrade irctokens

This commit is contained in:
Ben Harris 2020-03-12 01:06:05 -04:00
parent c0b22809ea
commit 9aafeb87fd
2 changed files with 2 additions and 3 deletions

View File

@ -1,2 +1,2 @@
tracery==0.1.1
irctokens==0.5.1
irctokens==0.7.0

View File

@ -117,9 +117,8 @@ def send(chan, msg):
def think(line):
chan = line.params.pop(0)
words = line.params[0].split(" ")
nick = irctokens.Hostmask(line.source).nickname
if len(words) > 0 and nick != bot["nick"]:
if len(words) > 0 and line.hostmask.nickname != bot["nick"]:
if words[0] == "!!list":
res = ""
for k in DB: