1
0
mirror of https://github.com/sys-fs/seddy synced 2024-11-22 11:54:16 -05:00

Forgot the ping regex.

This commit is contained in:
Thomas Mannay 2018-01-29 09:08:05 +00:00 committed by GitHub
parent ccff7d408c
commit b8f5234066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ send = '/tmp/{0}.out'.format(server)
parse_msg = re.compile(channel + ' :(.*)') parse_msg = re.compile(channel + ' :(.*)')
parse_sed = re.compile('(?<!\\\\)/') parse_sed = re.compile('(?<!\\\\)/')
is_sed = re.compile('^s/.*/.*') is_sed = re.compile('^s/.*/.*')
ping = re.compile('PING :(.*)')
class Queue: class Queue:
size = 0 size = 0