change type of status

pull/208/head
Sebdraven 2018-07-18 10:58:51 +02:00
parent c8e20d9087
commit 804e59ed8d
1 changed files with 5 additions and 3 deletions

View File

@ -418,7 +418,7 @@ def expand_history_whois(api, domain):
'categories': ['Network activity'], 'categories': ['Network activity'],
'comment': 'Whois history Name Servers of %s ' 'comment': 'Whois history Name Servers of %s '
'Status: %s ' % ( 'Status: %s ' % (
domain, item['status']) domain, ' '.join(item['status']))
} }
) )
@ -432,7 +432,8 @@ def expand_history_whois(api, domain):
'categories': ['Attribution'], 'categories': ['Attribution'],
'comment': 'Whois history registrant email of %s' 'comment': 'Whois history registrant email of %s'
'Status: %s' % ( 'Status: %s' % (
domain, item['status']) domain,
' '.join(item['status']))
} }
) )
@ -444,7 +445,8 @@ def expand_history_whois(api, domain):
'categories': ['Attribution'], 'categories': ['Attribution'],
'comment': 'Whois history registrant phone of %s' 'comment': 'Whois history registrant phone of %s'
'Status: %s' % ( 'Status: %s' % (
domain, item['status']) domain,
' '.join(item['status']))
} }
) )