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: