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()