1
0
Fork 0
mirror of synced 2024-09-29 08:51:53 +13:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-07-24 09:04:50 -05:00
parent 122e6049cf
commit afe8efde54

View file

@ -59,7 +59,7 @@ class Overwatch:
fmt = "{} has not used the hero {} before!".format(user.name, hero.title())
await self.bot.say(fmt)
return
elif r.status = 404:
elif r.status == 404:
fmt = "{} is not an actual hero!".format(hero.title())
await self.bot.say(fmt)
return