Forgot to do a % in the debug.msg.

This commit is contained in:
Jeremy Fincher 2003-11-17 07:32:20 +00:00
parent a2a97c1d83
commit 688013de27

View File

@ -171,7 +171,7 @@ def urlSnarfer(f):
url = match.group(0) url = match.group(0)
if any(lambda t: t[0] == url and t[1] == msg.args[0], q) and \ if any(lambda t: t[0] == url and t[1] == msg.args[0], q) and \
not world.testing: not world.testing:
debug.msg('Refusing to snarf %s.') debug.msg('Refusing to snarf %s.' % url)
else: else:
q.enqueue((url, msg.args[0], now)) q.enqueue((url, msg.args[0], now))
if self.threaded: if self.threaded: