[FIX] runbot: host must be null instead of emptry string

This commit is contained in:
Christophe Monniez 2020-09-23 00:29:44 +02:00
parent 6cf0b3e128
commit 17f0458d06

View File

@ -327,7 +327,7 @@ class BuildResult(models.Model):
'description': description,
'orphan_result': orphan,
'keep_host': self.keep_host,
'host': self.host if self.keep_host else '',
'host': self.host if self.keep_host else False,
})
def result_multi(self):