[Toaster] [review-request][PATCH] bitbake: toaster: fix typo in format string
Barros Pena, Belen
belen.barros.pena at intel.com
Tue May 5 02:21:22 PDT 2015
On 01/05/2015 22:58, "Ed Bartosh" <ed.bartosh at linux.intel.com> wrote:
>Fixed TypeError: not all arguments converted during string formatting
This seems to work and also fixes
https://bugzilla.yoctoproject.org/show_bug.cgi?id=7437
Thanks!
Belén
>
>[YOCTO #7618]
>
>Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
>---
> bitbake/lib/toaster/orm/models.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/bitbake/lib/toaster/orm/models.py
>b/bitbake/lib/toaster/orm/models.py
>index b9bb896..c00c352 100644
>--- a/bitbake/lib/toaster/orm/models.py
>+++ b/bitbake/lib/toaster/orm/models.py
>@@ -52,7 +52,7 @@ class ToasterSetting(models.Model):
> value = models.CharField(max_length=255)
>
> def __unicode__(self):
>- return "Setting %s = " % (self.name, self.value)
>+ return "Setting %s = %s" % (self.name, self.value)
>
> class ProjectManager(models.Manager):
> def create_project(self, name, release):
>--
>2.1.4
>
>--
>_______________________________________________
>toaster mailing list
>toaster at yoctoproject.org
>https://lists.yoctoproject.org/listinfo/toaster
>
>
More information about the toaster
mailing list