aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/pagination.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/pagination.py b/bot/pagination.py
index 30e74b1b1..e41f9a521 100644
--- a/bot/pagination.py
+++ b/bot/pagination.py
@@ -135,7 +135,7 @@ class LinePaginator(Paginator):
if not is_full:
if len(word) + reduced_char_count <= max_chars:
reduced_words.append(word)
- reduced_char_count += len(word)
+ reduced_char_count += len(word) + 1
else:
is_full = True
remaining_words.append(word)