summaryrefslogtreecommitdiffhomepage
path: root/gui/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'gui/scripts')
-rw-r--r--gui/scripts/extract-geo-data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/scripts/extract-geo-data.py b/gui/scripts/extract-geo-data.py
index 046f13175c..36c6867ed9 100644
--- a/gui/scripts/extract-geo-data.py
+++ b/gui/scripts/extract-geo-data.py
@@ -421,7 +421,7 @@ class PlaceTranslator(object):
Returns None when either there is no match or there is no translation for the matched city.
"""
preferred_locales = (get_locale_language(locale), convert_locale_ident(locale))
- match_prop_keys = ("name_" + x for x in preferred_locales)
+ match_prop_keys = list("name_" + x for x in preferred_locales)
for feat in self.source:
props = lower_dict_keys(feat["properties"])