]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/tools/special_phrases/special_phrase.py
ICU: use normalization from config in PHP
[nominatim.git] / nominatim / tools / special_phrases / special_phrase.py
index da7968cac9c0845917f4593da1c41c3b1b9ac18d..3b6aef851ee50bf586bbd32ef703c5a4da295c2b 100644 (file)
@@ -16,4 +16,5 @@ class SpecialPhrase():
         # Hack around a bug where building=yes was imported with quotes into the wiki
         self.p_type = re.sub(r'\"|"', '', p_type.strip())
         # Needed if some operator in the wiki are not written in english
+        p_operator = p_operator.strip().lower()
         self.p_operator = '-' if p_operator not in ('near', 'in') else p_operator