changeset 54:de09adb7a736

Fixed bug in the text splitting code of ExamineAction.
author KarstenBock@gmx.net
date Thu, 08 Sep 2011 18:56:10 +0200
parents 7b9f6e3513d4
children 8b1ad2d342d8
files objects/action.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/objects/action.py	Thu Sep 08 18:36:40 2011 +0200
+++ b/objects/action.py	Thu Sep 08 18:56:10 2011 +0200
@@ -208,7 +208,7 @@
         logger.debug(action_text)
         #this code will cut the line up into smaller lines that will be displayed
         place = 25
-        while place <= len(action_text):
+        while place < len(action_text):
             if action_text[place] == ' ':
                 action_text = action_text[:place] +'\n'+action_text[place:]
                 place += 26 #plus 1 character to offset the new line