Fix missing awaits (#1055)

This commit is contained in:
Will
2017-10-24 22:53:10 -04:00
committed by palmtree5
parent 10647f14b2
commit fed115996c
2 changed files with 3 additions and 3 deletions

View File

@@ -286,7 +286,7 @@ class Economy:
guild = ctx.guild
if top < 1:
top = 10
if bank.is_global():
if await bank.is_global():
bank_sorted = sorted(await bank.get_global_accounts(ctx.author),
key=lambda x: x.balance, reverse=True)
else: