diff --git a/plugins/Internet/plugin.py b/plugins/Internet/plugin.py index 054f4b3dd..d22d19c03 100644 --- a/plugins/Internet/plugin.py +++ b/plugins/Internet/plugin.py @@ -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']) diff --git a/src/version.py b/src/version.py index ab9abcac3..391d5d8a0 100644 --- a/src/version.py +++ b/src/version.py @@ -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)'