From 6e96f8f8bf9f75a58c5d4eeeb664d314204e2738 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 4 Oct 2015 12:54:41 -0700 Subject: [PATCH] Web: actually return the whitespace-stripped title --- plugins/Web/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Web/plugin.py b/plugins/Web/plugin.py index 7b04f1b75..eb4bc0bf7 100644 --- a/plugins/Web/plugin.py +++ b/plugins/Web/plugin.py @@ -155,7 +155,7 @@ class Web(callbacks.PluginRegexp): title = parser.title if title: title = utils.web.htmlToText(parser.title.strip()) - return parser.title + return title @fetch_sandbox def titleSnarfer(self, irc, msg, match):