jsonifier: fix exception warning

pull/3205/head
Simone Orsi 2025-02-21 10:29:20 +01:00
parent aee47a5e41
commit f58c7447ca
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ class Base(models.AbstractModel):
function = field_dict["function"]
try:
return self._function_value(rec, function, field_name)
except UserError:
except UserError as err:
if strict:
raise
if not tools.config["test_enable"]:
@ -143,7 +143,7 @@ class Base(models.AbstractModel):
"%(model)s.%(func)s not available",
{"model": self._name, "func": str(function)},
)
raise SwallableException()
raise SwallableException() from err
def _jsonify_record_handle_subparser(self, rec, field_dict, strict, subparser):
field_name = field_dict["name"]