From: Belen Barros Pena Date: Thu, 9 Jun 2016 10:35:11 +0000 (+0100) Subject: toaster: BuiltPackagesTable format empty state in packages table X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70f600f86ec4d536004d968919e86d2afa58d585;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toaster: BuiltPackagesTable format empty state in packages table The explanatory message in the empty state of the packages built table was missing some spaces. Signed-off-by: Belen Barros Pena Signed-off-by: Michael Wood --- diff --git a/lib/toaster/toastergui/buildtables.py b/lib/toaster/toastergui/buildtables.py index 8ef33fdfbda..4edd0e86c40 100644 --- a/lib/toaster/toastergui/buildtables.py +++ b/lib/toaster/toastergui/buildtables.py @@ -134,11 +134,11 @@ class BuiltPackagesTable(BuildTablesMixin, BuiltPackagesTableBase): self.default_orderby = "name" self.empty_state =\ - ('No packages were built. 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,' + ('No packages were built. 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):