chiark / gitweb /
correct syntax
[irc.git] / commands.py
index b669ba3a92f62718d1f4b7674c3d2f9a7fc32c69..1bc6ca1368299ec3e12b12fcfbd4f68086cf9b3b 100644 (file)
@@ -349,7 +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:
-      conn.privmsg(bot.channel,"%s would like to draw your attention to %s"%(nick,url))
+      if urlstring != cmd[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:])))
       bot.automsg(False,nick,"That URL was unique; I have posted it into IRC")
     urldb[url]=UrlLog(url,nick)