This commit is contained in:
Nicba1010 2018-02-05 01:57:41 +01:00
parent c5b2772590
commit f289728d91

2
bot.py
View File

@ -187,7 +187,7 @@ async def get_code(code: str) -> object:
if len(result.results) == 1:
for result in result.results:
if result.game_id == code:
return "```" + result.results[0].to_string() + "```"
return "```" + result.to_string() + "```"
return None