mirror of
https://github.com/sys-fs/seddy
synced 2024-11-24 12:25:46 -05:00
Linting
This commit is contained in:
parent
dd80cce26e
commit
ebc51bca37
@ -34,7 +34,7 @@ class Tube:
|
|||||||
'''Send a message.'''
|
'''Send a message.'''
|
||||||
if message[:7] == '\x01ACTION':
|
if message[:7] == '\x01ACTION':
|
||||||
with open(self.outgoing, 'w', encoding='utf-8') as send:
|
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))
|
send.write('PRIVMSG {} :\x01{}\x01\r\n'.format(channel, sanitised))
|
||||||
else:
|
else:
|
||||||
with open(self.outgoing, 'w', encoding='utf-8') as send:
|
with open(self.outgoing, 'w', encoding='utf-8') as send:
|
||||||
|
Loading…
Reference in New Issue
Block a user