c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #15305
[Bug 714640] Re: [trunk 3330] Bug in crm_partner_assign with french character
** Project changed: openobject-server => openobject-addons
--
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):
New
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