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:
parent
83dc061112
commit
c1930b301e
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user