diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-07 12:05:31 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-07 12:05:31 +0100 |
| commit | 4f3f12def2af08577ed2044bab8e5041fa627581 (patch) | |
| tree | 764e6761a22914039243be3c285ffa7515070413 /s2-geocode.py | |
| parent | 040c07261183fbf1fab3345f8fbec4d592bd97d1 (diff) | |
dept of
Diffstat (limited to 's2-geocode.py')
| -rw-r--r-- | s2-geocode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/s2-geocode.py b/s2-geocode.py index 63b3c463..78ca5acf 100644 --- a/s2-geocode.py +++ b/s2-geocode.py @@ -54,7 +54,7 @@ def remove_department_name(name): for part in name_partz: if 'school of' in part.lower(): continue - if 'department of' in part.lower(): + if 'department' in part.lower(): continue valid_partz.append(part) return ', '.join(valid_partz) |
