Fix combined .docx: line numbering only for transcript, centered cover pages, correct date format, reliable page numbering
Mirror and run GitLab CI / build (push) Has been cancelled
Ruff / ruff (push) Has been cancelled

This commit is contained in:
admin
2026-06-14 22:07:36 +00:00
parent 4651c5f8b2
commit e0d2fd6963
2 changed files with 118 additions and 51 deletions
+2 -1
View File
@@ -418,7 +418,8 @@ def process_transcription_task(
# 3c) Generate short cover-page descriptions using summarizer
transcript_cover_desc = ""
summary_cover_desc = ""
today_str = datetime.utcnow().strftime("%Y-%m-%d")
dt = datetime.utcnow()
today_str = f"{dt.strftime('%B')} {dt.day}, {dt.year}"
try:
scraibe._ensure_summarizer()