From 86c7b7f3fef18dfc422de6dcad501935ececf86c Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 8 Jan 2017 12:41:45 -0500 Subject: [PATCH] [addresses] no longer normalizing slashes in boundary names for places that have multilingual names, etc. --- scripts/geodata/addresses/components.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/geodata/addresses/components.py b/scripts/geodata/addresses/components.py index ff2f327e..50c99bd6 100644 --- a/scripts/geodata/addresses/components.py +++ b/scripts/geodata/addresses/components.py @@ -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