fix(Basic): Fix variable typo regression
This commit is contained in:
@@ -33,7 +33,7 @@ class Basic(Proxy):
|
|||||||
country_code = match.group(1)
|
country_code = match.group(1)
|
||||||
entry = match.group(2)
|
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:
|
if not servers:
|
||||||
raise ValueError(f"There's no proxies configured for \"{country_code}\"...")
|
raise ValueError(f"There's no proxies configured for \"{country_code}\"...")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user