chiark / gitweb /
fix logic test to check if the URL was the first thing mentioned
authorMatthew Vernon <matthew@rapun.sel.cam.ac.uk>
Mon, 7 Jun 2010 11:16:19 +0000 (12:16 +0100)
committerMatthew Vernon <matthew@rapun.sel.cam.ac.uk>
Mon, 7 Jun 2010 11:16:19 +0000 (12:16 +0100)
commands.py

index da929906aac4fd2e75ab148f9b836bfcff68d934..6a1dd73918aa73f05e2d1ae959b76ad910e1ef7d 100644 (file)
@@ -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:])))