mirror of
https://github.com/sys-fs/seddy
synced 2024-11-22 11:54:16 -05:00
Fix borking of ACTION sedding
This commit is contained in:
parent
74efcd0f66
commit
ed99ca5c9d
4
seddy.py
4
seddy.py
@ -86,6 +86,10 @@ def notice(msg):
|
||||
send.flush()
|
||||
|
||||
def privmsg(msg):
|
||||
if msg[:7] == '\x01ACTION':
|
||||
send.write('PRIVMSG ' + channel + ' :' + '\x01' +
|
||||
''.join(c for c in msg if c.isprintable()) + '\x01\r\n')
|
||||
else:
|
||||
send.write('PRIVMSG ' + channel + ' :' +
|
||||
''.join(c for c in msg if c.isprintable()) + '\r\n')
|
||||
send.flush()
|
||||
|
Loading…
Reference in New Issue
Block a user