From 5fa2edeb4cd0277dbd76bd94b1bc72e057f1b610 Mon Sep 17 00:00:00 2001 From: Matthew Vernon Date: Tue, 22 Mar 2011 14:24:10 +0000 Subject: [PATCH] servus understands https URLs as well --- commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.py b/commands.py index 1fce3fe..db8ace6 100644 --- a/commands.py +++ b/commands.py @@ -331,7 +331,7 @@ urlcomplaints = ["a contemporary","an interesting","a fascinating","an overused" ### Deal with /msg bot url or ~url in channel def urlq(bot, cmd, nick, conn, public,urldb): if (not urlre.search(cmd)): - bot.automsg(False,nick,"Please use 'url' only with http URLs") + bot.automsg(False,nick,"Please use 'url' only with http or https URLs") return urlstring=urlre.search(cmd).group(1) -- 2.30.2