From: Matthew Vernon Date: Tue, 22 Mar 2011 14:24:10 +0000 (+0000) Subject: servus understands https URLs as well X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=commitdiff_plain;h=5fa2edeb4cd0277dbd76bd94b1bc72e057f1b610 servus understands https URLs as well --- 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)