c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #15311
[Bug 714640] Re: [trunk 3330] Bug in crm_partner_assign with french character
Hello Serge,
Did you get any traceback ? If yes, then give the whole traceback.
Thanks.
** Changed in: openobject-addons
Status: New => Incomplete
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/714640
Title:
[trunk 3330] Bug in crm_partner_assign with french character
Status in OpenERP Modules (addons):
Incomplete
Bug description:
def geo_find(addr):
try:
regex = '<coordinates>([+-]?[0-9\.]+),([+-]?[0-9\.]+),([+-]?[0-9\.]+)</coordinates>'
url = 'http://maps.google.com/maps/geo?q=' + urllib.quote(addr) + '&output=xml&oe=utf8&sensor=false'
if we have u'MONTR\xe9AL'i got a error
change by
url = 'http://maps.google.com/maps/geo?q=' + urllib.quote(addr.encode('UTF8')) + '&output=xml&oe=utf8&sensor=false'
work fine
References