[Core] Fix update notification (#2677)

removes a problematic await
This commit is contained in:
Michael H 2019-05-15 10:31:00 -04:00 committed by Kowlin
parent 3c78fb420b
commit f2858ea48c

View File

@ -126,7 +126,7 @@ def init_events(bot, cli_flags):
owners.append(owner) owners.append(owner)
for co_owner in bot._co_owners: for co_owner in bot._co_owners:
co_owner = await bot.get_user(co_owner) co_owner = bot.get_user(co_owner)
if co_owner is not None: if co_owner is not None:
owners.append(co_owner) owners.append(co_owner)