# HG changeset patch # User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr> # Date 1665061033 -7200 # Thu Oct 06 14:57:13 2022 +0200 # Branch 13.0 # Node ID 6e51cdfe85b20c771bba42ef325539a0909f551e # Parent 30de42aea7be05fa78049dec76134627278a54f0 🚑 fix message formatting diff --git a/NEWS.rst b/NEWS.rst --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,11 @@ Changelog ========= +13.0.1.2.2 +========== + +Fix message formating. + 13.0.1.2.1 ========== diff --git a/__manifest__.py b/__manifest__.py --- a/__manifest__.py +++ b/__manifest__.py @@ -21,7 +21,7 @@ { "name": "Accounting Reports", "license": "AGPL-3", - "version": "13.0.1.2.1", + "version": "13.0.1.2.2", "category": "Accounting/Accounting", "author": "XCG Consulting", "website": "https://odoo.consulting/", diff --git a/models/account_move_line.py b/models/account_move_line.py --- a/models/account_move_line.py +++ b/models/account_move_line.py @@ -78,7 +78,7 @@ "The account %(name)s (%(code)s) is not marked as " "reconciliable!" ) - % (all_accounts[0].name, all_accounts[0].code) + % {"name": all_accounts[0].name, "code": all_accounts[0].code} ) return True