From d5899fae83485196af42572615c2a0f59d2f2767 Mon Sep 17 00:00:00 2001 From: bobloy Date: Tue, 2 Oct 2018 04:44:38 -0400 Subject: [PATCH] [RPC] Add missing await in rpc_load (#2167) --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 284ae48fe..cd7445cd6 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1783,7 +1783,7 @@ class Core(commands.Cog, CoreLogic): self._cleanup_and_refresh_modules(spec.name) - self.bot.load_extension(spec) + await self.bot.load_extension(spec) async def rpc_unload(self, request): cog_name = request.params[0]