From 688013de273931f11ae9167fffb12af527445bc3 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 17 Nov 2003 07:32:20 +0000 Subject: [PATCH] Forgot to do a % in the debug.msg. --- src/privmsgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/privmsgs.py b/src/privmsgs.py index d00f2ae61..cb92c65e9 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -171,7 +171,7 @@ def urlSnarfer(f): url = match.group(0) if any(lambda t: t[0] == url and t[1] == msg.args[0], q) and \ not world.testing: - debug.msg('Refusing to snarf %s.') + debug.msg('Refusing to snarf %s.' % url) else: q.enqueue((url, msg.args[0], now)) if self.threaded: