Skip to content
Snippets Groups Projects
Commit 6e51cdfe85b2 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: fix message formatting

parent 30de42aea7be
No related branches found
No related tags found
1 merge request!19Topic/13.0/fix
Pipeline #42550 passed
......@@ -2,6 +2,11 @@
Changelog
=========
13.0.1.2.2
==========
Fix message formating.
13.0.1.2.1
==========
......
......@@ -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/",
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment