diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-11 22:59:35 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-11 22:59:35 +0100 |
commit | c009172f77549e385b9d79f15f181581c55e9909 (patch) | |
tree | aaf845578b30c67a2d3f4351afe29caa5e0ed235 /bitbake-dev/lib/bb/ui/ncurses.py | |
parent | 107a9da00640a9e086a8608c20aee48aefd92893 (diff) | |
download | poky-c009172f77549e385b9d79f15f181581c55e9909.tar.gz |
bitbake-dev: Sync with upstream
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
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 |