IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit c1930b301e4b827bf1196218a5c953d23b782912
parent 83dc061112e5572dab42c99f41a40c7078de7329 Author: acidvegas <acid.vegas@acid.vegas> Date: Tue, 30 May 2023 17:01:37 -0400 Fixed parser variable name typo Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git a/parser.py b/parser.py @@ -7,7 +7,7 @@ import sys def parse(option, data, raw=True): if not raw: - data = ' '.join(line.split()[3:]) + data = ' '.join(data.split()[3:]) if data[:1] == ':': data = data[1:] if type(data) == bool: |