syntax fix for other python versions

This commit is contained in:
2021-06-13 14:01:23 +02:00
parent 4f0b7d7ef4
commit 5facd8b5a5
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ async def resolve(url):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
message = response.url
return message
return str(message)
# use the dice module for rolling.
def roll(notation):