bitbake: Misc syncups with bitbake upstream, mostly whitespace and a missed line from the last UI commit

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2011-01-05 11:24:14 +00:00
parent 2e0ef25a50
commit 0f70631544
3 changed files with 1 additions and 5 deletions

View File

@ -40,6 +40,7 @@ logger = logging.getLogger('BitBake.Build')
NULL = open(os.devnull, 'r+')
# When we execute a python function we'd like certain things
# in all namespaces, hence we add them to __builtins__
# If we do not do this and use the exec globals, they will

View File

@ -99,7 +99,6 @@ class DepExplorer(gtk.Window):
self.pkg_treeview.get_selection().connect("changed", self.on_cursor_changed)
column = gtk.TreeViewColumn("Package", gtk.CellRendererText(), text=COL_PKG_NAME)
self.pkg_treeview.append_column(column)
column.set_sort_column_id(COL_PKG_NAME)
pane.add1(scrolled)
scrolled.add(self.pkg_treeview)
@ -264,7 +263,6 @@ def main(server, eventHandler):
gtk.gdk.threads_enter()
pbar.update(x, progress_total)
gtk.gdk.threads_leave()
continue
if isinstance(event, bb.event.ParseCompleted):

View File

@ -22,12 +22,10 @@ from __future__ import division
import os
import sys
import itertools
import xmlrpclib
import logging
import progressbar
import bb.msg
from bb import ui
from bb.ui import uihelper
logger = logging.getLogger("BitBake")
@ -209,7 +207,6 @@ def main(server, eventHandler):
event.stats.completed + event.stats.active +
event.stats.failed + 1,
event.stats.total, event.taskid, event.taskstring)
continue
if isinstance(event, bb.runqueue.runQueueTaskFailed):