forked from FrederikBaerentsen/BrickTracker
Fix undefined id variable used when a checkbox does not exist
This commit is contained in:
parent
cb58ef83cc
commit
130b3fa84a
@ -58,7 +58,7 @@ class BrickSetCheckboxList(BrickRecordList[BrickSetCheckbox]):
|
||||
if id not in self.checkboxes:
|
||||
raise NotFoundException(
|
||||
'Checkbox with ID {id} was not found in the database'.format(
|
||||
id=self.fields.id,
|
||||
id=id,
|
||||
),
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user