mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Fixed stupid verisign bug.
This commit is contained in:
parent
3e28059c9e
commit
e40183f1e5
@ -622,6 +622,9 @@ class FunCommands(callbacks.Privmsg):
|
|||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
ip = socket.gethostbyname(host)
|
ip = socket.gethostbyname(host)
|
||||||
|
if ip == '64.94.110.11':
|
||||||
|
irc.reply(msg, 'Host not found.')
|
||||||
|
else:
|
||||||
irc.reply(msg, ip)
|
irc.reply(msg, ip)
|
||||||
except socket.error:
|
except socket.error:
|
||||||
irc.error(msg, 'Host not found.')
|
irc.error(msg, 'Host not found.')
|
||||||
|
@ -90,6 +90,7 @@ class FunCommandsTest(PluginTestCase, PluginDocumentation):
|
|||||||
|
|
||||||
def testDns(self):
|
def testDns(self):
|
||||||
self.assertNotError('dns slashdot.org')
|
self.assertNotError('dns slashdot.org')
|
||||||
|
self.assertResponse('dns alsdkjfaslkdfjaslkdfj.com', 'Host not found.')
|
||||||
|
|
||||||
def testWhois(self):
|
def testWhois(self):
|
||||||
self.assertNotError('whois ohio-state.edu')
|
self.assertNotError('whois ohio-state.edu')
|
||||||
|
Loading…
Reference in New Issue
Block a user