mirror of https://github.com/devine-dl/devine.git
fix(Basic): Fix variable typo regression
This commit is contained in:
parent
3b3345964a
commit
c194bb5b3a
|
@ -33,7 +33,7 @@ class Basic(Proxy):
|
|||
country_code = match.group(1)
|
||||
entry = match.group(2)
|
||||
|
||||
servers: Optional[Union[str, list[str]]] = self._data.get(country_code)
|
||||
servers: Optional[Union[str, list[str]]] = self.countries.get(country_code)
|
||||
if not servers:
|
||||
raise ValueError(f"There's no proxies configured for \"{country_code}\"...")
|
||||
|
||||
|
|
Loading…
Reference in New Issue