From 57688526cf0f90f741e53a6f2152c1eb1431c4fc Mon Sep 17 00:00:00 2001 From: Matthew Vernon Date: Mon, 7 Jun 2010 12:03:41 +0100 Subject: [PATCH] correct syntax --- commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.py b/commands.py index 365b4aa..1bc6ca1 100644 --- a/commands.py +++ b/commands.py @@ -350,7 +350,7 @@ 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[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:]))) bot.automsg(False,nick,"That URL was unique; I have posted it into IRC") -- 2.30.2