From fc8a56d1d9874a85afc9ee75b2835617c1d601fa Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Wed, 15 May 2019 15:49:29 +0200 Subject: [PATCH] fix: Removed test print --- misp_modules/modules/import_mod/joe_import.py | 1 - 1 file changed, 1 deletion(-) diff --git a/misp_modules/modules/import_mod/joe_import.py b/misp_modules/modules/import_mod/joe_import.py index bae920f6..206f1086 100644 --- a/misp_modules/modules/import_mod/joe_import.py +++ b/misp_modules/modules/import_mod/joe_import.py @@ -136,7 +136,6 @@ def handler(q=False): if not data: return json.dumps({'success': 0}) joe_data = json.loads(data)['analysis'] - print(type(joe_data)) joe_parser = JoeParser(joe_data) joe_parser.parse_joe() return {'results': joe_parser.results}