Avoid passing None in comments

domtools
Raphaël Vinot 2016-12-01 10:26:40 +01:00
parent 7c6153478e
commit afd8b71349
1 changed files with 3 additions and 3 deletions

View File

@ -61,13 +61,13 @@ class DomainTools(object):
to_return = []
if self.reg_mail:
for mail, comment in self.reg_mail.items():
to_return.append({'type': ['whois-registrant-email'], 'values': [mail], 'comment': comment})
to_return.append({'type': ['whois-registrant-email'], 'values': [mail], 'comment': comment or ''})
if self.reg_phone:
for phone, comment in self.reg_phone.items():
to_return.append({'type': ['whois-registrant-phone'], 'values': [phone], 'comment': comment})
to_return.append({'type': ['whois-registrant-phone'], 'values': [phone], 'comment': comment or ''})
if self.reg_name:
for name, comment in self.reg_name.items():
to_return.append({'type': ['whois-registrant-name'], 'values': [name], 'comment': comment})
to_return.append({'type': ['whois-registrant-name'], 'values': [name], 'comment': comment or ''})
if self.registrar:
to_return.append({'type': ['whois-registrar'], 'values': list(self.registrar)})
if self.creation_date: