From baac5bac46efb674181716e40e49f187716b9808 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sat, 30 Oct 2010 13:55:19 +0200 Subject: [PATCH] fix warning message for python-html2text missing --- weboob/tools/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/tools/misc.py b/weboob/tools/misc.py index d38b8b91..875f84a6 100644 --- a/weboob/tools/misc.py +++ b/weboob/tools/misc.py @@ -61,7 +61,7 @@ try: h2t.SKIP_INTERNAL_LINKS = True html2text = h2t.html2text except ImportError: - warning('python-html is not present. HTML pages will not be converted into text.') + warning('python-html2text is not present. HTML pages will not be converted into text.') def html2text(s): return s