definitely fix this empty line issue svn diff

This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-06-13 00:18:47 +00:00
parent 48e83924d6
commit 9a88c02142

View file

@ -188,9 +188,6 @@ class TextWin(Win):
limit = txt[:self.width-offset].find('\n') limit = txt[:self.width-offset].find('\n')
else: else:
limit = self.width-offset-1 limit = self.width-offset-1
# if limit == 0:
# txt = txt[1:]
# continue
color = message.user.color if message.user else None color = message.user.color if message.user else None
if not first: if not first:
nick = None nick = None
@ -199,9 +196,7 @@ class TextWin(Win):
txt[:limit], message.color, txt[:limit], message.color,
offset) offset)
lines.append(l) lines.append(l)
if limit == 0: txt = txt[limit+1:]
limit = 1
txt = txt[limit:]
first = False first = False
return lines[-len(messages):]# return only the needed number of lines return lines[-len(messages):]# return only the needed number of lines