From 759ca3ba7e58152a1a45c3d62d5af47ccbaf0c7e Mon Sep 17 00:00:00 2001 From: Vexed <51716387+Vexed01@users.noreply.github.com> Date: Sun, 29 Sep 2019 12:42:44 +0100 Subject: [PATCH] Quotes in helpset tagline for clarity (#3012) * Add quotes to clarify helpset tagline Add quotation marks to helpset tagline's response so two consecutive full stops don't appear. * more commiting * make travis/black happy * for review make no longer repeat tagline --- changelog.d/3010.bugfix.rst | 1 + redbot/core/core_commands.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/3010.bugfix.rst diff --git a/changelog.d/3010.bugfix.rst b/changelog.d/3010.bugfix.rst new file mode 100644 index 000000000..7d36a7521 --- /dev/null +++ b/changelog.d/3010.bugfix.rst @@ -0,0 +1 @@ +Add quotation marks to helpset tagline's response so two consecutive full stops don't appear \ No newline at end of file diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index a647e46c4..0d304de9a 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1290,7 +1290,7 @@ class Core(commands.Cog, CoreLogic): return await ctx.bot._config.help.tagline.set(tagline) - await ctx.send(_("The tagline has been set to {}.").format(tagline[:1900])) + await ctx.send(_("The tagline has been set.")) @commands.command() @checks.is_owner()