From eac3712e357ede3a1ab69ace0aaaf4709900c7a7 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Sun, 5 Feb 2006 04:40:52 +0000 Subject: [PATCH] Imported from archive. * mudpy.py (User.send): Reduced the word-wrap column count from 80 to 79, to deal with some clients which will themselves wrap at, rather than after, the last column. --- mudpy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mudpy.py b/mudpy.py index 3650f89..c989f0f 100644 --- a/mudpy.py +++ b/mudpy.py @@ -651,8 +651,8 @@ class User: # find and replace macros in the output output = replace_macros(self, output) - # wrap the text at 80 characters - output = wrap_ansi_text(output, 80) + # wrap the text at 79 characters + output = wrap_ansi_text(output, 79) # tack the terminator back on if terminate: output += self.terminator -- 2.11.0