[addresses] no longer normalizing slashes in boundary names for places that have multilingual names, etc.

This commit is contained in:
Al
2017-01-08 12:41:45 -05:00
parent a6d94f998b
commit 86c7b7f3fe

View File

@@ -488,8 +488,6 @@ class AddressComponents(object):
# If the name contains a comma, stop and only use the phrase before the comma
if ',' in name:
return name.split(',', 1)[0].strip()
elif '/' in name:
return name.split('/', 1)[0].strip()
return name