bugfix
This commit is contained in:
parent
0a0e10d363
commit
79edc5e8bc
1 changed files with 2 additions and 2 deletions
|
@ -166,5 +166,5 @@ def topic(inp, conn=None, chan=None, notice=None):
|
|||
if split[0][0] == "#":
|
||||
out = "PRIVMSG %s :%s" % (split[0], message)
|
||||
else:
|
||||
out = "TOPIC %s :%s" % (input.chan, message)
|
||||
input.conn.send(out)
|
||||
out = "TOPIC %s :%s" % (chan, message)
|
||||
conn.send(out)
|
||||
|
|
Reference in a new issue