mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Bugfix
This commit is contained in:
parent
9f5e2da3bf
commit
9ea76f6f01
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ async def get_player_info(region: str, summonerid: int, **kwargs):
|
|||
print("[League] Getting profile info for: {region} {summonerid}".format(region=region, summonerid=summonerid))
|
||||
# GET the json API response
|
||||
r = await loop.run_in_executor(None, requests.get, 'https://{region}.api.pvp.net/api/lol/{region}/v1.4/summoner/'
|
||||
'{summonerid}/entry?api_key={token}'
|
||||
'{summonerid}?api_key={token}'
|
||||
.format(region=region, summonerid=summonerid, token=token))
|
||||
# Ensure the request is successful
|
||||
if r.status_code == 200:
|
||||
|
|
Loading…
Reference in a new issue