Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DoroWolf committed Aug 1, 2024
1 parent 224ea0c commit 19e9c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/whois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def get_whois(msg, domain):
res.append(f"{msg.locale.t('whois.message.expiration_date')}{
msg.ts2strftime(expiration_date.timestamp())}" if expiration_date else '')
res.append(f"{msg.locale.t('whois.message.name_servers')}{format(name_servers)}" if name_servers else '')
res.append(f"{msg.locale.t('whois.message.emails')}{format(emails)}" if emails else '')
res.append(f"{msg.locale.t('whois.message.email')}{format(emails)}" if emails else '')
res.append(f"{msg.locale.t('whois.message.dnssec')}{format(dnssec)}" if dnssec else '')
res.append(f"{msg.locale.t('whois.message.name')}{format(name)}" if name else '')
res.append(f"{msg.locale.t('whois.message.organization')}{format(org)}" if org else '')
Expand Down

0 comments on commit 19e9c1d

Please sign in to comment.