From d6f81dc544aca0827de0700aa67d922dab78c2d4 Mon Sep 17 00:00:00 2001 From: Matthew Vernon Date: Mon, 7 Jun 2010 12:01:29 +0100 Subject: [PATCH] deal with other stuff in the url command better --- commands.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commands.py b/commands.py index b669ba3..365b4aa 100644 --- a/commands.py +++ b/commands.py @@ -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) -- 2.30.2