From 113ddf8c6962d7dab3dfbc6377258fe4fb8275c1 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 4 Apr 2012 15:13:39 +0200 Subject: [PATCH] Internet: Remove special handling for Verisign in @dns. --- plugins/Internet/plugin.py | 5 +---- src/version.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) 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)'