From 5a6b5329f114441d8c080ff3f4432a6554483546 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 5 Dec 2003 12:01:19 +0000 Subject: [PATCH] Fixed bug #854232. --- plugins/Http.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Http.py b/plugins/Http.py index d4ae1a887..fc44e2a0f 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -143,7 +143,8 @@ class Http(callbacks.Privmsg): if m is not None: irc.reply(msg, utils.htmlToText(m.group(1).strip())) else: - irc.reply(msg, 'That URL appears to have no HTML title.') + irc.reply(msg, 'That URL appears to have no HTML title ' + 'within the first %s bytes.' % self.maxSize) except ValueError, e: irc.error(msg, str(e))