[Economy] Fix TypeError in [p]payouts (#2263)

This commit is contained in:
zephyrkul 2018-11-05 14:55:29 -07:00 committed by Toby Harradine
parent 99bbde7be9
commit a59002275d

View File

@ -388,7 +388,7 @@ class Economy(commands.Cog):
@guild_only_check()
async def payouts(self, ctx: commands.Context):
"""Show the payouts for the slot machine."""
await ctx.author.send(SLOT_PAYOUTS_MSG())
await ctx.author.send(SLOT_PAYOUTS_MSG)
@commands.command()
@guild_only_check()