IRCP

- information gathering tool for irc servers
git clone git://git.acid.vegas/IRCP.git
Log | Files | Refs | Archive | README | LICENSE

commit e9af84c009b4676e3bb883de098efbcb48563bb5
parent d5b626ac13b72cc016de13cd0af8f852e5eecac0
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sat, 27 May 2023 17:13:31 -0400

Removed break on missing results

Diffstat:
Mparser.py | 3---

1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/parser.py b/parser.py
@@ -50,9 +50,6 @@ if len(sys.argv) >= 2:
 				elif type(data) == list:
 					for item in data:
 						print(parse(item, raw))
-			else:
-				print(f'error: \'{check}\' is an invalid or missing field')
-				break
 	print(f'\nFound {found} results in {len(logs)} logs')
 else:
 	print('usage: python parser.py <field> [clean]\n')