From 21a65d256803c1c217c415b3a5242d03ac5b42f0 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 18 Mar 2006 08:13:27 +0000 Subject: [PATCH] minor typo --- src/common/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/helpers.py b/src/common/helpers.py index 5951ed890..6c4429632 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -445,7 +445,7 @@ def from_xs_boolean_to_python_boolean(value): def ensure_unicode_string(s): # py23 u'abc'.decode('utf-8') raises - # python24 does not. is python23 is ooold we can remove this func + # python24 does not. if python23 is ooold we can remove this func # FIXME: remove this when we abandon py23 if isinstance(s, str): s = s.decode('utf-8')