1
0
mirror of https://github.com/sys-fs/seddy synced 2024-11-24 04:18:28 -05:00
This commit is contained in:
Thomas Mannay 2019-02-01 17:22:24 +00:00
parent dd80cce26e
commit ebc51bca37

View File

@ -34,7 +34,7 @@ class Tube:
'''Send a message.'''
if message[:7] == '\x01ACTION':
with open(self.outgoing, 'w', encoding='utf-8') as send:
sanitised = ''.join(c for c in msg if c.isprintable())
sanitised = ''.join(c for c in message if c.isprintable())
send.write('PRIVMSG {} :\x01{}\x01\r\n'.format(channel, sanitised))
else:
with open(self.outgoing, 'w', encoding='utf-8') as send: