From 0830e576c27dc9fd738225067e8aaee3708d2379 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 2 Feb 2004 01:30:47 +0000 Subject: [PATCH] Fix the output of doctype, I don't care if we're different from mozbot. --- plugins/Http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Http.py b/plugins/Http.py index 21c3c3577..c0faaad37 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -94,9 +94,9 @@ class Http(callbacks.Privmsg): m = self._doctypeRe.search(s) if m: s = utils.normalizeWhitespace(m.group(0)) - irc.reply('%s has the following doctype: %s' % (url, s)) + irc.reply(s) else: - irc.reply('%s has no specified doctype.' % url) + irc.reply('That URL has no specified doctype.') def size(self, irc, msg, args): """