From 84c028c0dc1d6203062011a8e5ab888c40e966f1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 26 Aug 2003 11:52:42 +0000 Subject: [PATCH] Removed id number from randomurl output. --- plugins/URLSnarfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/URLSnarfer.py b/plugins/URLSnarfer.py index 6bb5bc88f..0772db422 100644 --- a/plugins/URLSnarfer.py +++ b/plugins/URLSnarfer.py @@ -145,7 +145,7 @@ class URLSnarfer(callbacks.Privmsg, ChannelDBHandler): (id, url, added, addedBy, _, _, _, _, _, _) = cursor.fetchone() when = time.strftime(conf.humanTimestampFormat, time.localtime(int(added))) - s = '%s: <%s> (added by %s at %s)' % (id, url, addedBy, when) + s = '<%s> (added by %s at %s)' % (id, url, addedBy, when) irc.reply(msg, s) def numurls(self, irc, msg, args):