From 5cd3a5b5af95441a2ecd8cb2f0098ecba4922842 Mon Sep 17 00:00:00 2001 From: maxbooiii <63972751+maxbooiii@users.noreply.github.com> Date: Sat, 22 Aug 2020 18:13:09 -0700 Subject: [PATCH] missing dots (#4031) --- redbot/core/core_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 6f8327c6b..ec1299eb6 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1141,7 +1141,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): for page in pagify(self.bot._last_exception, shorten_by=10): await destination.send(box(page, lang="py")) else: - await ctx.send(_("No exception has occurred yet")) + await ctx.send(_("No exception has occurred yet.")) @commands.command() @commands.check(CoreLogic._can_get_invite_url) @@ -2151,7 +2151,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): show_hidden = not await ctx.bot._config.help.show_hidden() await ctx.bot._config.help.show_hidden.set(show_hidden) if show_hidden: - await ctx.send(_("Help will not filter hidden commands")) + await ctx.send(_("Help will not filter hidden commands.")) else: await ctx.send(_("Help will filter hidden commands."))