diff options
Diffstat (limited to 'bitbake-dev/lib/bb/ui/ncurses.py')
-rw-r--r-- | bitbake-dev/lib/bb/ui/ncurses.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake-dev/lib/bb/ui/ncurses.py b/bitbake-dev/lib/bb/ui/ncurses.py index 3cac264648..2cd7e8e6e7 100644 --- a/bitbake-dev/lib/bb/ui/ncurses.py +++ b/bitbake-dev/lib/bb/ui/ncurses.py | |||
@@ -44,9 +44,9 @@ | |||
44 | 44 | ||
45 | """ | 45 | """ |
46 | 46 | ||
47 | import os, sys, curses, time, random, threading, itertools, time | 47 | import os, sys, curses, itertools, time |
48 | from curses.textpad import Textbox | ||
49 | import bb | 48 | import bb |
49 | import xmlrpclib | ||
50 | from bb import ui | 50 | from bb import ui |
51 | from bb.ui import uihelper | 51 | from bb.ui import uihelper |
52 | 52 | ||
@@ -180,6 +180,7 @@ class NCursesUI: | |||
180 | def __init__( self, x, y, width, height ): | 180 | def __init__( self, x, y, width, height ): |
181 | NCursesUI.Window.__init__( self, x, y, width, height ) | 181 | NCursesUI.Window.__init__( self, x, y, width, height ) |
182 | 182 | ||
183 | # put that to the top again from curses.textpad import Textbox | ||
183 | # self.textbox = Textbox( self.win ) | 184 | # self.textbox = Textbox( self.win ) |
184 | # t = threading.Thread() | 185 | # t = threading.Thread() |
185 | # t.run = self.textbox.edit | 186 | # t.run = self.textbox.edit |