changeset 8f40fdd76d9d in trytond:6.4
details: https://hg.tryton.org/trytond?cmd=changeset&node=8f40fdd76d9d
description:
        Add missing column argument to msg_relation_not_found formatting

        issue11615
        review423531004
        (grafted from 827a10296511f7552abc5923dcdc939f0fe27793)
diffstat:

 trytond/model/modelstorage.py |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (19 lines):

diff -r fd36395b7c8f -r 8f40fdd76d9d trytond/model/modelstorage.py
--- a/trytond/model/modelstorage.py     Tue Jul 19 20:57:47 2022 +0200
+++ b/trytond/model/modelstorage.py     Mon Aug 01 10:57:00 2022 +0200
@@ -776,6 +776,7 @@
                 raise ImportDataError(gettext(
                         'ir.msg_relation_not_found',
                         value=value,
+                        column=column,
                         **Relation.__names__()))
             elif len(res) > 1:
                 raise ImportDataError(
@@ -839,6 +840,7 @@
                 raise ImportDataError(gettext(
                         'ir.msg_relation_not_found',
                         value=value,
+                        column=column,
                         **Relation.__names__()))
             elif len(res) > 1:
                 raise ImportDataError(

Reply via email to