test for none proxy env

This commit is contained in:
Roy Olav Purser 2021-07-23 17:30:22 +02:00
parent a72b37bc34
commit f739418141
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -81,7 +81,9 @@ for key in providers:
country = None
pos = len(country_groups) - 1
if pos >= 0:
country = country_groups[pos].strip("_")
country_temp = country_groups[pos]
if isinstance(country_temp, str):
country = country_temp.strip("_")
current_keys.add(f'{key}_{country}')
proxy = os.environ.get(match)
if proxy is not None: