[Toaster] [review-request][PATCH] bitbake: toaster: fix typo in format string
Ed Bartosh
ed.bartosh at linux.intel.com
Fri May 1 14:58:15 PDT 2015
Fixed TypeError: not all arguments converted during string formatting
[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
More information about the toaster
mailing list