fix(anime): 파이프라인 5건 수정 — 에피소드 정규식(v2/S01E), 릴리스 그룹 필터, 자막 보호, 배치 다운로드, 타임아웃

This commit is contained in:
2026-03-15 08:27:08 +09:00
parent 63818999d9
commit 9f74812710
40 changed files with 2759 additions and 815 deletions

View File

@@ -100,7 +100,10 @@ class DocsManager:
if changes:
lines.append("## 변경 파일")
for c in changes:
lines.append(f"- `{c.get('file', '?')}` - {c.get('description', '')}")
if isinstance(c, dict):
lines.append(f"- `{c.get('file', '?')}` - {c.get('description', '')}")
else:
lines.append(f"- {c}")
lines.append("")
warnings = summary.get("warnings", [])