Skip to content

Commit a0cf9de

Browse files
author
Sebdraven
committed
add logs
1 parent 9de2013 commit a0cf9de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

misp_modules/modules/expansion/securitytrails.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,5 +509,7 @@ def __select_registrant_item(entry):
509509
if 'contact' in entry:
510510
print(entry)
511511
print('\r\n')
512-
return list(filter(lambda x: x['type'] == 'registrant',
513-
entry['contact']))
512+
res = list(filter(lambda x: x['type'] == 'registrant',
513+
entry['contact']))
514+
print(res)
515+
return res

0 commit comments

Comments
 (0)