]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: Misc syncups with bitbake upstream, mostly whitespace and a missed line...
authorRichard Purdie <rpurdie@linux.intel.com>
Wed, 5 Jan 2011 11:24:14 +0000 (11:24 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 5 Jan 2011 11:24:14 +0000 (11:24 +0000)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/build.py
bitbake/lib/bb/ui/depexp.py
bitbake/lib/bb/ui/knotty.py

index e288e35613c96b31b4d2529713a280f80e952f54..129150a76018e0db185f8e7362ca03433b40819e 100644 (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
index 66ef96cdbc14d77bad3a755b8636f9da7392cafd..13bf9ac008fd487d25fe410c1fe64fb1d2fb3333 100644 (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):
index 4d87a3d7cdb4f6934d9125426e613d5b5410b703..7fb7f84e5b3024f3ac33c713d86bd711e792a884 100644 (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):