changeset 58f65c689647 in tryton:default details: https://hg.tryton.org/tryton?cmd=changeset&node=58f65c689647 description: Set header as last parameter of export_data_domain
issue11885 review424251003 diffstat: tryton/gui/window/win_export.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (14 lines): diff -r 88bbfbf90edf -r 58f65c689647 tryton/gui/window/win_export.py --- a/tryton/gui/window/win_export.py Tue Nov 08 21:54:01 2022 +0100 +++ b/tryton/gui/window/win_export.py Sun Nov 13 10:07:52 2022 +0100 @@ -362,8 +362,8 @@ try: data = RPCExecute( 'model', self.model, 'export_data_domain', - domain, fields, header, offset, limit, - self.screen.order, context=self.context) + domain, fields, offset, limit, self.screen.order, + header, context=self.context) except RPCException: data = []