Slicing of strings must be with unicode strings.
svn: r13165
This commit is contained in:
parent
768ea89a0f
commit
f3931f0168
@ -424,6 +424,8 @@ class RemoveUnused(Tool.Tool, ManagedWindow.ManagedWindow, UpdateCallback):
|
|||||||
text = " ".join(text.split())
|
text = " ".join(text.split())
|
||||||
|
|
||||||
# if the note is too long, truncate it
|
# if the note is too long, truncate it
|
||||||
|
# but first set type of text to unicode, otherwise the sliceing might go wrong.
|
||||||
|
text = unicode(text)
|
||||||
if len(text) > 80:
|
if len(text) > 80:
|
||||||
text = text[:80] + "..."
|
text = text[:80] + "..."
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user