String changes

This commit is contained in:
Kovid Goyal 2020-12-22 08:07:13 +05:30
parent b4544de5f3
commit 38aec680fc
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -627,7 +627,7 @@ class _Interpreter(object):
self.locals[v] = x
ret = self.expression_list(prog.block)
return ret
self.error(_('Field {0} is not a list').format(f))
self.error(_('The field {0} is not a list').format(f))
except ValueError as e:
raise e
except Exception as e: