Internet: Remove special handling for Verisign in @dns.

This commit is contained in:
Valentin Lorentz 2012-04-04 15:13:39 +02:00
parent 18b16d84ed
commit 113ddf8c69
2 changed files with 2 additions and 5 deletions

View File

@ -56,10 +56,7 @@ class Internet(callbacks.Plugin):
else:
try:
ip = socket.getaddrinfo(host, None)[0][4][0]
if ip == '64.94.110.11': # Verisign sucks!
irc.reply(_('Host not found.'))
else:
irc.reply(ip)
irc.reply(ip)
except socket.error:
irc.reply(_('Host not found.'))
dns = wrap(dns, ['something'])

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change
them once."""
version = '0.83.4.1+limnoria (2012-04-04T13:08:49+0000)'
version = '0.83.4.1+limnoria (2012-04-04T13:13:39+0000)'