aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/branding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/branding.py b/bot/branding.py
index d9f1373a..6abcea61 100644
--- a/bot/branding.py
+++ b/bot/branding.py
@@ -332,7 +332,7 @@ class BrandingManager(commands.Cog):
async def branding_cycle(self, ctx: commands.Context) -> None:
"""Force cycle guild icon."""
async with ctx.typing():
- success = self.cycle()
+ success = await self.cycle()
await ctx.send("Icon cycle successful" if success else "Icon cycle failed")
@branding_cmds.command(name="apply")