From 758af54a5791c905a92d37a4cd88064e6c212f5a Mon Sep 17 00:00:00 2001 From: Justine Doutreloux Date: Mon, 8 Jan 2024 13:17:30 +0100 Subject: [PATCH] [FIX] _py3o_parser_context: fix call to format_date in old_format_lang --- report_py3o/models/_py3o_parser_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report_py3o/models/_py3o_parser_context.py b/report_py3o/models/_py3o_parser_context.py index 4af2c066f0..c288e6ee4d 100644 --- a/report_py3o/models/_py3o_parser_context.py +++ b/report_py3o/models/_py3o_parser_context.py @@ -136,4 +136,4 @@ def _old_format_lang( no_break_space=True, ) - return self._format_date(self._env, value) + return self._format_date(value)