mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Import: Allow to import "False"-value (Z#23127414) (#3505)
This commit is contained in:
@@ -805,7 +805,7 @@ class QuestionColumn(ImportColumn):
|
||||
return self.q.clean_answer(value)
|
||||
|
||||
def assign(self, value, order, position, invoice_address, **kwargs):
|
||||
if value:
|
||||
if value is not None:
|
||||
if not hasattr(order, '_answers'):
|
||||
order._answers = []
|
||||
if isinstance(value, QuestionOption):
|
||||
|
||||
Reference in New Issue
Block a user