pull/208/head
Sebdraven 2018-07-12 14:38:38 +02:00
parent 9de201375b
commit a0cf9de590
1 changed files with 4 additions and 2 deletions

View File

@ -509,5 +509,7 @@ def __select_registrant_item(entry):
if 'contact' in entry:
print(entry)
print('\r\n')
return list(filter(lambda x: x['type'] == 'registrant',
entry['contact']))
res = list(filter(lambda x: x['type'] == 'registrant',
entry['contact']))
print(res)
return res