X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~matthewv/git?p=irc.git;a=blobdiff_plain;f=commands.py;h=f869cd38e059a51022fc7b4f874f1737fe39fb66;hp=6a1dd73918aa73f05e2d1ae959b76ad910e1ef7d;hb=81729ffc4c81f257839f950779f5d2c2c133d3b6;hpb=4f4854eda8bb08cc7cf1dbe46ace59ce282745d3 diff --git a/commands.py b/commands.py index 6a1dd73..f869cd3 100644 --- a/commands.py +++ b/commands.py @@ -36,7 +36,7 @@ def karmadelq(bot, cmd, nick, conn, public, karma): # help - provides the URL of the help file def helpq(bot, cmd, nick, conn, public): bot.automsg(public,nick, - "For help see http://www.pick.ucam.org/~matthew/irc/servus.html") + "For help see http://www.chiark.greenend.org.uk/~matthewv/irc/servus.html") # query bot status @@ -350,9 +350,9 @@ def urlq(bot, cmd, nick, conn, public,urldb): 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.split()[1]: #first argument to URL was not the url - conn.privmsg(bot.channel,"%s remarks %s" % (nick," ".join(cmd.split()[1:]))) + 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)