1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 07:56:42 +00:00

Fixed parser variable name typo

This commit is contained in:
Dionysus 2023-05-30 17:01:37 -04:00
parent 83dc061112
commit c1930b301e
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -7,7 +7,7 @@ import sys
def parse(option, data, raw=True): def parse(option, data, raw=True):
if not raw: if not raw:
data = ' '.join(line.split()[3:]) data = ' '.join(data.split()[3:])
if data[:1] == ':': if data[:1] == ':':
data = data[1:] data = data[1:]
if type(data) == bool: if type(data) == bool: