mirror of
https://git.yoctoproject.org/poky
synced 2026-04-03 20:02:24 +02:00
bitbake: toaster: fix typo in format string
Fixed TypeError: not all arguments converted during string formatting [YOCTO #7618] (Bitbake rev: 308b5529d4e183d550221864bfdbefd31cc23705) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b546be990d
commit
1e625fcc5f
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user