IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 5718d80b0c74635855d4f5084d5b7e7221106b9e
parent 32f45694ee9f606a1cf04c8bafa512dc0c2648ca Author: acidvegas <acid.vegas@acid.vegas> Date: Tue, 30 May 2023 03:34:05 -0400 Fixed parser not handling booleans Diffstat:
|
1 file changed, 0 insertions(+), 4 deletions(-) |
diff --git a/parser.py b/parser.py @@ -36,8 +36,6 @@ if len(sys.argv) >= 2: elif type(data) == list: for item in data: found.append(option, parse(item, raw)) - elif type(data) == bool: - found.append(parse(option, str(item), raw)) else: for item in data: _data = data[item] @@ -47,8 +45,6 @@ if len(sys.argv) >= 2: for _item in _data: if option in _item: found.append(parse(option, _item, raw)) - elif type(_data) == bool: - found.append(parse(option, str(_item), raw)) if found: print(f'\nfound {len(found)} results in {len(logs)} logs') else: |