Really fix that traceback
This commit is contained in:
parent
a9fa0ee377
commit
29b95f1820
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class TextMultiWin(FieldInput, Win):
|
||||||
FieldInput.__init__(self, field)
|
FieldInput.__init__(self, field)
|
||||||
Win.__init__(self)
|
Win.__init__(self)
|
||||||
options = field.get_value()
|
options = field.get_value()
|
||||||
if isinstance(self.options, list):
|
if isinstance(options, list):
|
||||||
self.options = options
|
self.options = options
|
||||||
else:
|
else:
|
||||||
self.options = options.split('\n') if options else []
|
self.options = options.split('\n') if options else []
|
||||||
|
|
Loading…
Reference in a new issue