]> code.ossystems Code Review - openembedded-core.git/commitdiff
uihelper: import bb.build, kill commented lines
authorChris Larson <chris_larson@mentor.com>
Wed, 16 Feb 2011 22:58:07 +0000 (15:58 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 21 Feb 2011 13:49:04 +0000 (13:49 +0000)
(Bitbake rev: 718448e96d714adf8aaecedac5cb77c7f36b9cdb)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/ui/uihelper.py

index 698de03f0a65f50b4354d9e4ffc3ba696914fe08..617d60db8231d4dba5efc7ad674b81083587a92d 100644 (file)
@@ -17,6 +17,8 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
+import bb.build
+
 class BBUIHelper:
     def __init__(self):
         self.needUpdate = False
@@ -35,16 +37,6 @@ class BBUIHelper:
             self.failed_tasks.append( { 'title' : "%s %s" % (event._package, event._task)})
             self.needUpdate = True
 
-        # Add runqueue event handling
-        #if isinstance(event, bb.runqueue.runQueueTaskCompleted):
-        #    a = 1
-        #if isinstance(event, bb.runqueue.runQueueTaskStarted):
-        #    a = 1
-        #if isinstance(event, bb.runqueue.runQueueTaskFailed):
-        #    a = 1
-        #if isinstance(event, bb.runqueue.runQueueExitWait):
-        #    a = 1
-
     def getTasks(self):
         self.needUpdate = False
         return (self.running_tasks, self.failed_tasks)