From cfa737d1d75f5c040612354f608068b54ac23d9e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 7 Sep 2003 06:23:32 +0000 Subject: [PATCH] Changed limit to 100 instead of 10. --- plugins/URLSnarfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/URLSnarfer.py b/plugins/URLSnarfer.py index b62bc4bf4..479045f53 100644 --- a/plugins/URLSnarfer.py +++ b/plugins/URLSnarfer.py @@ -260,7 +260,7 @@ class URLSnarfer(callbacks.Privmsg, ChannelDBHandler): sql = """SELECT url, added, added_by FROM urls WHERE %s ORDER BY id DESC - LIMIT 10""" % criterion + LIMIT 100""" % criterion cursor.execute(sql, *formats) if cursor.rowcount == 0: irc.reply(msg, 'No URLs matched that criteria.')