Menu

#330 Messages appear one word per line.

v3.0
open
5
2010-04-09
2010-04-09
No

On Windows, messages are printed one word per line. This is due to a problem with the Windows version of curses which is unable to give the number of columns of the terminal. As a workaround, I changed line 1085 in cli.py to:

cols = curses.tigetnum('cols')
if cols > 0:
self.COLS = cols

Discussion


Log in to post a comment.