From 0bff2363dc142a63f5bb38f20da392fe14bc03b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BA=D0=BE=D1=81=20=D0=90=D1=80=D1=82=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B5=D0=B2=D0=B8?= =?UTF-8?q?=D1=87?= Date: Thu, 22 Jan 2026 10:55:42 +0700 Subject: [PATCH] Add empty line after title --- redmine_reporter/formatter_odt.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redmine_reporter/formatter_odt.py b/redmine_reporter/formatter_odt.py index fcda7ca..22cbc00 100644 --- a/redmine_reporter/formatter_odt.py +++ b/redmine_reporter/formatter_odt.py @@ -29,6 +29,10 @@ def format_odt( header_paragraph = P(stylename=para_style_name, text=header_text) doc.text.addElement(header_paragraph) + # Добавляем пустую строку (новый параграф без текста) + empty_paragraph = P(stylename=para_style_name, text="") + doc.text.addElement(empty_paragraph) + # Группировка: project - version - [(issue, hours, status_ru)] projects = {} for issue, hours in issue_hours: