chiark / gitweb /
new flirt from chelgrian
[irc.git] / commands.py
index 365b4aa2151832b6d2a6a7ce664f03cdf7cac7a0..9d5dcb450f5765feb1a27a744be68662be14eee3 100644 (file)
@@ -334,7 +334,7 @@ def urlq(bot, cmd, nick, conn, public,urldb):
     bot.automsg(False,nick,"Please use 'url' only with http URLs")
     return
 
-  urlstring=urlre.search(command).group(1)
+  urlstring=urlre.search(cmd).group(1)
   url=canonical_url(urlstring)
   if (url in urldb):
     T = urldb[url]
@@ -349,10 +349,10 @@ 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
-        conn.privmsg(bot.channel,"%s remarks %s", % (nick," ".join(cmd.split()[1:])))
+      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:])))
+        conn.privmsg(bot.channel,"(via %s) %s"%(nick," ".join(cmd.split()[1:])))
       bot.automsg(False,nick,"That URL was unique; I have posted it into IRC")
     urldb[url]=UrlLog(url,nick)