Skip to content

Commit

Permalink
[FIX] runbot: prevent crash with invalid exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Williambraecky committed Nov 18, 2024
1 parent c2e9aaf commit a72be05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runbot/models/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class UpgradeExceptions(models.Model):
_description = 'Upgrade exception'

active = fields.Boolean('Active', default=True)
elements = fields.Text('Elements')
elements = fields.Text('Elements', required=True)
bundle_id = fields.Many2one('runbot.bundle', index=True)
info = fields.Text('Info')
team_id = fields.Many2one('runbot.team', 'Assigned team', index=True)
Expand Down

0 comments on commit a72be05

Please sign in to comment.