From bce7b6fcd835fdcc1bff1c53378e91277a2e1a91 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 28 Mar 2003 03:53:22 +0000 Subject: [PATCH] Changed stripHtml to utils.htmlToText --- plugins/Http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Http.py b/plugins/Http.py index d78d9ff2d..5cc4e7260 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -148,7 +148,7 @@ class Http(callbacks.Privmsg): rating = self._gkrating.search(profile).group(1) games = self._gkgames.search(profile).group(1) (w, l, d) = self._gkrecord.search(profile).groups() - profile = stripHtml(profile) + profile = utils.htmlToText(profile) seen = self._gkseen.search(profile).group(1) if profile.find('Team:') >= 0: team = self._gkteam.search(profile).group(1)