summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-06-09 11:35:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:05 +0100
commit0db23ae759fe0f5f7861bc2d87dd4566237e35e7 (patch)
treee02fe359a5f0317a7f4728f7f04239c508a4aa5a /bitbake
parent1a00cdbcb17510ad5d492fa0feb92f6666c1ab73 (diff)
downloadpoky-0db23ae759fe0f5f7861bc2d87dd4566237e35e7.tar.gz
bitbake: toaster: BuiltPackagesTable format empty state in packages table
The explanatory message in the empty state of the packages built table was missing some spaces. (Bitbake rev: 70f600f86ec4d536004d968919e86d2afa58d585) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/buildtables.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py
index 8ef33fdfbd..4edd0e86c4 100644
--- a/bitbake/lib/toaster/toastergui/buildtables.py
+++ b/bitbake/lib/toaster/toastergui/buildtables.py
@@ -134,11 +134,11 @@ class BuiltPackagesTable(BuildTablesMixin, BuiltPackagesTableBase):
134 self.default_orderby = "name" 134 self.default_orderby = "name"
135 135
136 self.empty_state =\ 136 self.empty_state =\
137 ('<strong>No packages were built.</strong> How did this happen?' 137 ('<strong>No packages were built.</strong> How did this happen? '
138 'Well, BitBake reuses as much stuff as possible.' 138 'Well, BitBake reuses as much stuff as possible. '
139 'If all of the packages needed were already built and available' 139 'If all of the packages needed were already built and available '
140 'in your build infrastructure, BitBake' 140 'in your build infrastructure, BitBake '
141 'will not rebuild any of them. This might be slightly confusing,' 141 'will not rebuild any of them. This might be slightly confusing, '
142 'but it does make everything faster.') 142 'but it does make everything faster.')
143 143
144 def setup_columns(self, *args, **kwargs): 144 def setup_columns(self, *args, **kwargs):