From 1a091cac846ea0054b70d13d25cc1c62fc7e017a Mon Sep 17 00:00:00 2001 From: Rolux Date: Thu, 1 May 2008 00:11:09 +0200 Subject: [PATCH] typo --- oxutils/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oxutils/html.py b/oxutils/html.py index 4eb0af1..1856a4d 100644 --- a/oxutils/html.py +++ b/oxutils/html.py @@ -122,7 +122,7 @@ def cleanHtml(text): charrefpat = re.compile(r'&(#(\d+|x[\da-fA-F]+)|[\w.:-]+);?') def decodeHtml(html): - return htmldecode(text) + return htmldecode(html) def htmldecode(text): """Decode HTML entities in the given text."""