fix(Basic): Fix variable typo regression

This commit is contained in:
rlaphoenix 2024-04-02 11:06:34 +01:00
parent 3b3345964a
commit c194bb5b3a
1 changed files with 1 additions and 1 deletions

View File

@ -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}\"...")