← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 714640] Re: [trunk 3330] Bug in crm_partner_assign with french character

 

** Summary changed:

- [trunk 3330] Bug in cre_partner_assign with french character
+ [trunk 3330] Bug in crm_partner_assign with french character

-- 
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 Server:
  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