merge changes from rlx

This commit is contained in:
j 2008-07-06 12:31:51 +02:00
commit 5bcc2af2fd

View file

@ -85,7 +85,7 @@ def wrapString(string, length, separator, balance):
lines.append(word + ' ')
else:
# word is longer than line
position = length - len(lines[len(lines) - 1]) + 1
position = length - len(lines[len(lines) - 1])
lines[len(lines) - 1] += word[0:position]
for i in range(position, len(word), length):
lines.append(word[i:i+length]);