From d0f0ebb17fc54f9a4b176714f8e7bbe00e9bbd18 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel <stephane@tinyerp.com> Date: Fri, 6 Feb 2009 10:25:23 +0100 Subject: [PATCH] [FIX] Fix an encoding error lp bug: https://launchpad.net/bugs/326054 fixed bzr revid: stephane@tinyerp.com-20090206092523-8bl7spf9qh4w7pdo --- bin/osv/fields.py | 2 +- bin/tools/translate.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index a1069f8e386b..99b39ed9c65d 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -156,7 +156,7 @@ class char(_column): # we need to convert the string to a unicode object to be able # to evaluate its length (and possibly truncate it) reliably if isinstance(symb, str): - u_symb = unicode(symb.replace('\xa0', '\xc2\xa0'), 'utf8') + u_symb = unicode(symb, 'utf8') elif isinstance(symb, unicode): u_symb = symb else: diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 25bd39a4c76f..7e1a7ca08a8c 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -546,8 +546,8 @@ def trans_load_data(db_name, fileobj, fileformat, lang, strict=False, lang_name= 'translatable': 1, 'date_format' : str(locale.nl_langinfo(locale.D_FMT).replace('%y', '%Y')), 'time_format' : str(locale.nl_langinfo(locale.T_FMT)), - 'decimal_point' : str(locale.localeconv()['decimal_point']), - 'thousands_sep' : str(locale.localeconv()['thousands_sep']), + 'decimal_point' : str(locale.localeconv()['decimal_point']).replace('\xa0', '\xc2\xa0'), + 'thousands_sep' : str(locale.localeconv()['thousands_sep']).replace('\xa0', '\xc2\xa0'), } try: -- GitLab