From b0b1caf043a51ea56505687af6236f84530a0f5d Mon Sep 17 00:00:00 2001 From: Bob Farrell Date: Sat, 3 May 2008 01:00:17 +0100 Subject: [PATCH] Words needed an extra space between them so they don't squish together Sorry about that. --- bpython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpython.py b/bpython.py index 17e61b3..047f66e 100644 --- a/bpython.py +++ b/bpython.py @@ -430,7 +430,7 @@ class Repl: for i in range( 0, l ): if i+1 >= cols and not i % cols and i < l: self.list_win.addstr( '\n ' ) - self.list_win.addstr( items[ i ] + ( " " * (wl - len(items[ i ]))), curses.color_pair( self._C["c"]+1 ) ) + self.list_win.addstr( items[ i ] + ( " " * (wl - len(items[ i ])+1)), curses.color_pair( self._C["c"]+1 ) ) self.list_win.border()