From a10d4200a023a7fb4eaaabfeac097e96965a74ef Mon Sep 17 00:00:00 2001 From: pjenvey Date: Wed, 19 Nov 2008 00:01:35 +0000 Subject: correct r7651 comment, this changed as of 2.5.2 --- paste/util/quoting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'paste/util') diff --git a/paste/util/quoting.py b/paste/util/quoting.py index bd3ae0c..b596d7f 100644 --- a/paste/util/quoting.py +++ b/paste/util/quoting.py @@ -58,8 +58,8 @@ def html_unquote(s, encoding=None): """ if isinstance(s, str): if s == '': - # workaround re.sub('', '', u'') returning '' < 2.5.1 - # instead of u'' >= 2.5.1 + # workaround re.sub('', '', u'') returning '' < 2.5.2 + # instead of u'' >= 2.5.2 return u'' s = s.decode(encoding or default_encoding) return _unquote_re.sub(_entity_subber, s) -- cgit v1.2.1