summaryrefslogtreecommitdiffhomepage
path: root/gui/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'gui/scripts')
-rwxr-xr-xgui/scripts/fetch-relay-locations.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/gui/scripts/fetch-relay-locations.py b/gui/scripts/fetch-relay-locations.py
index eeea51d56d..374ec98601 100755
--- a/gui/scripts/fetch-relay-locations.py
+++ b/gui/scripts/fetch-relay-locations.py
@@ -62,11 +62,10 @@ def structure_locations(locations):
country = countries[country_code]
cities = country["cities"]
- if location_key != "se-bet":
- if city_code not in cities:
- cities[city_code] = city_name
- else:
- print("There are multiple entries for {} in {}".format(city_name, country_name))
+ if city_code not in cities:
+ cities[city_code] = city_name
+ else:
+ print("There are multiple entries for {} in {}".format(city_name, country_name))
return countries