Messages appear one word per line.
Brought to you by:
edloper
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