mirror of
https://github.com/sys-fs/seddy
synced 2024-11-26 04:57:18 -05:00
Change method for stripping non-printable chars.
This commit is contained in:
parent
1942431d3c
commit
74efcd0f66
4
seddy.py
4
seddy.py
@ -1,7 +1,6 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
# See the LICENSE file for licensing information
|
# See the LICENSE file for licensing information
|
||||||
import re
|
import re
|
||||||
from string import printable
|
|
||||||
|
|
||||||
nick = 'seddy'
|
nick = 'seddy'
|
||||||
server = 'chat.freenode.net'
|
server = 'chat.freenode.net'
|
||||||
@ -88,7 +87,7 @@ def notice(msg):
|
|||||||
|
|
||||||
def privmsg(msg):
|
def privmsg(msg):
|
||||||
send.write('PRIVMSG ' + channel + ' :' +
|
send.write('PRIVMSG ' + channel + ' :' +
|
||||||
''.join(filter(printable.__contains__, msg)) + '\r\n')
|
''.join(c for c in msg if c.isprintable()) + '\r\n')
|
||||||
send.flush()
|
send.flush()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
@ -122,6 +121,5 @@ if __name__ == "__main__":
|
|||||||
notice('[Python] https://github.com/sys-fs/seddy')
|
notice('[Python] https://github.com/sys-fs/seddy')
|
||||||
elif is_sed.match(msg):
|
elif is_sed.match(msg):
|
||||||
foo = seddy(msg,history)
|
foo = seddy(msg,history)
|
||||||
foo = ''.join(c for c in foo if c not in '\r\n')
|
|
||||||
if foo != False:
|
if foo != False:
|
||||||
privmsg(re.sub('\\\\/', '/', foo))
|
privmsg(re.sub('\\\\/', '/', foo))
|
||||||
|
Loading…
Reference in New Issue
Block a user