]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
toaster: BuiltPackagesTable format empty state in packages table
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>
Thu, 9 Jun 2016 10:35:11 +0000 (11:35 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 14 Jun 2016 10:08:58 +0000 (11:08 +0100)
The explanatory message in the empty state of the packages built table
was missing some spaces.

Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
lib/toaster/toastergui/buildtables.py

index 8ef33fdfbda3aa8c9efa4d667916eaafeb2a68ff..4edd0e86c40eb682acc1864ec442addab6a9ab02 100644 (file)
@@ -134,11 +134,11 @@ class BuiltPackagesTable(BuildTablesMixin, BuiltPackagesTableBase):
         self.default_orderby = "name"
 
         self.empty_state =\
-            ('<strong>No packages were built.</strong> How did this happen?'
-             'Well, BitBake reuses as much stuff as possible.'
-             'If all of the packages needed were already built and available'
-             'in your build infrastructure, BitBake'
-             'will not rebuild any of them. This might be slightly confusing,'
+            ('<strong>No packages were built.</strong> How did this happen? '
+             'Well, BitBake reuses as much stuff as possible. '
+             'If all of the packages needed were already built and available '
+             'in your build infrastructure, BitBake '
+             'will not rebuild any of them. This might be slightly confusing, '
              'but it does make everything faster.')
 
     def setup_columns(self, *args, **kwargs):