This commit is contained in:
Kovid Goyal 2022-04-21 20:02:16 +05:30
commit e047a2c84e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -840,7 +840,7 @@ class _Interpreter:
f = self.expr(prog.list_field_expr)
res = getattr(self.parent_book, f, f)
if res is not None:
if not isinstance(res, list):
if isinstance(res, str):
res = [r.strip() for r in res.split(separator) if r.strip()]
ret = ''
if self.break_reporter: