summaryrefslogtreecommitdiff
path: root/modules/mm_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mm_utils.py')
-rw-r--r--modules/mm_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mm_utils.py b/modules/mm_utils.py
index 419ae06a0..a8fa02967 100644
--- a/modules/mm_utils.py
+++ b/modules/mm_utils.py
@@ -102,7 +102,7 @@ def wrap(text, column=70):
# wrap each line
for text in lines:
while text:
- if len(text) < column:
+ if len(text) <= column:
line = text
text = ''
else: