summaryrefslogtreecommitdiffhomepage
path: root/gui/scripts
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2024-05-15 18:48:11 +0200
committerOskar Nyberg <oskar@mullvad.net>2024-05-15 18:48:11 +0200
commit9eabe74d6c9feaf5e4072d49142dc6e120b775b2 (patch)
tree6cf240185534c5596e2e3f198eb2fc1e7b21facc /gui/scripts
parent4bb137bdeec2564612b55fd5bf785fadac218968 (diff)
downloadmullvadvpn-9eabe74d6c9feaf5e4072d49142dc6e120b775b2.tar.xz
mullvadvpn-9eabe74d6c9feaf5e4072d49142dc6e120b775b2.zip
Remove check for se-bet
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