aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/ext/commands/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py
index 177d3b9b..a2937451 100644
--- a/discord/ext/commands/help.py
+++ b/discord/ext/commands/help.py
@@ -931,7 +931,7 @@ class DefaultHelpCommand(HelpCommand):
def shorten_text(self, text):
""":class:`str`: Shortens text to fit into the :attr:`width`."""
if len(text) > self.width:
- return text[:self.width - 3] + '...'
+ return text[:self.width - 3].rstrip() + '...'
return text
def get_ending_note(self):