diff options
| author | viega | 1998-06-03 00:55:36 +0000 |
|---|---|---|
| committer | viega | 1998-06-03 00:55:36 +0000 |
| commit | 7060c865a8a20dc921a6ebdd65f57933a34a5b8a (patch) | |
| tree | 80a0d6420b5d9e9b488f233995c64c3cf16ca537 /modules/mm_utils.py | |
| parent | 0923bf3cb5ad9e577f39c50ad8abc40dc85eba9e (diff) | |
| download | mailman-7060c865a8a20dc921a6ebdd65f57933a34a5b8a.tar.gz mailman-7060c865a8a20dc921a6ebdd65f57933a34a5b8a.tar.zst mailman-7060c865a8a20dc921a6ebdd65f57933a34a5b8a.zip | |
Diffstat (limited to 'modules/mm_utils.py')
| -rw-r--r-- | modules/mm_utils.py | 2 |
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: |
