summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 4025702fbc..8d7388e2e6 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -260,7 +260,7 @@ class Project(models.Model):
260 for l in self.projectlayer_set.all().order_by("pk"): 260 for l in self.projectlayer_set.all().order_by("pk"):
261 commit = l.layercommit.get_vcs_reference() 261 commit = l.layercommit.get_vcs_reference()
262 print("ii Building layer ", l.layercommit.layer.name, " at vcs point ", commit) 262 print("ii Building layer ", l.layercommit.layer.name, " at vcs point ", commit)
263 BRLayer.objects.create(req = br, name = l.layercommit.layer.name, giturl = l.layercommit.layer.vcs_url, commit = commit, dirpath = l.layercommit.dirpath) 263 BRLayer.objects.create(req = br, name = l.layercommit.layer.name, giturl = l.layercommit.layer.vcs_url, commit = commit, dirpath = l.layercommit.dirpath, layer_version=l.layercommit)
264 264
265 br.state = BuildRequest.REQ_QUEUED 265 br.state = BuildRequest.REQ_QUEUED
266 now = timezone.now() 266 now = timezone.now()