From: Matthew Vernon Date: Mon, 7 Jun 2010 11:16:19 +0000 (+0100) Subject: fix logic test to check if the URL was the first thing mentioned X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?a=commitdiff_plain;ds=sidebyside;h=4f4854eda8bb08cc7cf1dbe46ace59ce282745d3;p=irc.git fix logic test to check if the URL was the first thing mentioned --- diff --git a/commands.py b/commands.py index da92990..6a1dd73 100644 --- a/commands.py +++ b/commands.py @@ -349,7 +349,7 @@ def urlq(bot, cmd, nick, conn, public,urldb): if (public): bot.automsg(False,nick,"That URL was unique. There is little point in using !url out loud; please use it via /msg") else: - if urlstring != cmd[1]: #first argument to URL was not the url + if urlstring != cmd.split()[1]: #first argument to URL was not the url conn.privmsg(bot.channel,"%s remarks %s" % (nick," ".join(cmd.split()[1:]))) else: conn.privmsg(bot.channel,"%s would like to draw your attention to %s"%(nick," ".join(cmd.split()[1:])))