Browse Source

Fix borking of ACTION sedding

master
Thomas Mannay GitHub 7 years ago
parent
commit
ed99ca5c9d
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      seddy.py

+ 6
- 2
seddy.py View File

@@ -86,8 +86,12 @@ def notice(msg):
send.flush()

def privmsg(msg):
send.write('PRIVMSG ' + channel + ' :' +
''.join(c for c in msg if c.isprintable()) + '\r\n')
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()

if __name__ == "__main__":


Loading…
Cancel
Save