Commit 6fc1aa9f authored by Guido van Rossum's avatar Guido van Rossum

When using textwrap, don't break long words. Occasionally a line will

be too long, but breaking these at an arbitrary character looks wrong
(and can occasionally prevent you from finding a search string).
parent d1c4c77f
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.16 $'[11:-2] __version__='$Revision: 1.17 $'[11:-2]
import os, sys, time import os, sys, time
...@@ -86,7 +86,10 @@ class stupid_log_write: ...@@ -86,7 +86,10 @@ class stupid_log_write:
if not textwrap or len(line) < 80: if not textwrap or len(line) < 80:
buf.append(line) buf.append(line)
else: else:
buf.extend(textwrap.wrap(line, width=79, subsequent_indent=" "*20)) buf.extend(textwrap.wrap(line,
width=79,
subsequent_indent=" "*20,
break_long_words=0))
if detail: if detail:
buf.append(str(detail)) buf.append(str(detail))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment