From 32bb49cc7c7c5ff3dc9955aa1362f3cb79a7ec7c Mon Sep 17 00:00:00 2001 From: Thorsten Date: Tue, 12 Jan 2016 22:48:16 +0100 Subject: [PATCH] parse nonexistent domain --- plugins/commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/commands.py b/plugins/commands.py index 715908b..f3d5b92 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -839,3 +839,5 @@ def isdown(argv, **args): return {'msg': '{}: {} looks down'.format(args['reply_user'], url)} elif "is up" in response: return {'msg': '{}: {} looks up'.format(args['reply_user'], url)} + elif "site on the interwho" in response: + return {'msg': '{}: {} does not exist, you\'re trying to fool me?'.format(args['reply_user'], url)}