diff options
| -rw-r--r-- | bitbake/lib/bb/build.py | 1 | ||||
| -rw-r--r-- | bitbake/lib/bb/ui/depexp.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 3 |
3 files changed, 1 insertions, 5 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index e288e35613..129150a760 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
| @@ -40,6 +40,7 @@ logger = logging.getLogger('BitBake.Build') | |||
| 40 | 40 | ||
| 41 | NULL = open(os.devnull, 'r+') | 41 | NULL = open(os.devnull, 'r+') |
| 42 | 42 | ||
| 43 | |||
| 43 | # When we execute a python function we'd like certain things | 44 | # When we execute a python function we'd like certain things |
| 44 | # in all namespaces, hence we add them to __builtins__ | 45 | # in all namespaces, hence we add them to __builtins__ |
| 45 | # If we do not do this and use the exec globals, they will | 46 | # If we do not do this and use the exec globals, they will |
diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py index 66ef96cdbc..13bf9ac008 100644 --- a/bitbake/lib/bb/ui/depexp.py +++ b/bitbake/lib/bb/ui/depexp.py | |||
| @@ -99,7 +99,6 @@ class DepExplorer(gtk.Window): | |||
| 99 | self.pkg_treeview.get_selection().connect("changed", self.on_cursor_changed) | 99 | self.pkg_treeview.get_selection().connect("changed", self.on_cursor_changed) |
| 100 | column = gtk.TreeViewColumn("Package", gtk.CellRendererText(), text=COL_PKG_NAME) | 100 | column = gtk.TreeViewColumn("Package", gtk.CellRendererText(), text=COL_PKG_NAME) |
| 101 | self.pkg_treeview.append_column(column) | 101 | self.pkg_treeview.append_column(column) |
| 102 | column.set_sort_column_id(COL_PKG_NAME) | ||
| 103 | pane.add1(scrolled) | 102 | pane.add1(scrolled) |
| 104 | scrolled.add(self.pkg_treeview) | 103 | scrolled.add(self.pkg_treeview) |
| 105 | 104 | ||
| @@ -264,7 +263,6 @@ def main(server, eventHandler): | |||
| 264 | gtk.gdk.threads_enter() | 263 | gtk.gdk.threads_enter() |
| 265 | pbar.update(x, progress_total) | 264 | pbar.update(x, progress_total) |
| 266 | gtk.gdk.threads_leave() | 265 | gtk.gdk.threads_leave() |
| 267 | |||
| 268 | continue | 266 | continue |
| 269 | 267 | ||
| 270 | if isinstance(event, bb.event.ParseCompleted): | 268 | if isinstance(event, bb.event.ParseCompleted): |
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 4d87a3d7cd..7fb7f84e5b 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
| @@ -22,12 +22,10 @@ from __future__ import division | |||
| 22 | 22 | ||
| 23 | import os | 23 | import os |
| 24 | import sys | 24 | import sys |
| 25 | import itertools | ||
| 26 | import xmlrpclib | 25 | import xmlrpclib |
| 27 | import logging | 26 | import logging |
| 28 | import progressbar | 27 | import progressbar |
| 29 | import bb.msg | 28 | import bb.msg |
| 30 | from bb import ui | ||
| 31 | from bb.ui import uihelper | 29 | from bb.ui import uihelper |
| 32 | 30 | ||
| 33 | logger = logging.getLogger("BitBake") | 31 | logger = logging.getLogger("BitBake") |
| @@ -209,7 +207,6 @@ def main(server, eventHandler): | |||
| 209 | event.stats.completed + event.stats.active + | 207 | event.stats.completed + event.stats.active + |
| 210 | event.stats.failed + 1, | 208 | event.stats.failed + 1, |
| 211 | event.stats.total, event.taskid, event.taskstring) | 209 | event.stats.total, event.taskid, event.taskstring) |
| 212 | |||
| 213 | continue | 210 | continue |
| 214 | 211 | ||
| 215 | if isinstance(event, bb.runqueue.runQueueTaskFailed): | 212 | if isinstance(event, bb.runqueue.runQueueTaskFailed): |
