diff --git a/redbot/cogs/admin/announcer.py b/redbot/cogs/admin/announcer.py index 0a9dac2a2..f0045b167 100644 --- a/redbot/cogs/admin/announcer.py +++ b/redbot/cogs/admin/announcer.py @@ -75,6 +75,7 @@ class Announcer: if len(failed) == 1 else _("I could not announce to the following servers: ") ) - msg += humanize_list(tuple(map(inline, failed))) + if failed: + msg += humanize_list(tuple(map(inline, failed))) await self.ctx.bot.send_to_owners(msg) self.active = False