missing dots (#4031)

This commit is contained in:
maxbooiii 2020-08-22 18:13:09 -07:00 committed by GitHub
parent d80d7c939c
commit 5cd3a5b5af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1141,7 +1141,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
for page in pagify(self.bot._last_exception, shorten_by=10): for page in pagify(self.bot._last_exception, shorten_by=10):
await destination.send(box(page, lang="py")) await destination.send(box(page, lang="py"))
else: else:
await ctx.send(_("No exception has occurred yet")) await ctx.send(_("No exception has occurred yet."))
@commands.command() @commands.command()
@commands.check(CoreLogic._can_get_invite_url) @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() show_hidden = not await ctx.bot._config.help.show_hidden()
await ctx.bot._config.help.show_hidden.set(show_hidden) await ctx.bot._config.help.show_hidden.set(show_hidden)
if show_hidden: if show_hidden:
await ctx.send(_("Help will not filter hidden commands")) await ctx.send(_("Help will not filter hidden commands."))
else: else:
await ctx.send(_("Help will filter hidden commands.")) await ctx.send(_("Help will filter hidden commands."))