From 590ae738788727ab12b900ead3e0303a9bbbca60 Mon Sep 17 00:00:00 2001 From: Wataru Hirota Date: Sat, 20 Apr 2024 13:59:18 +0900 Subject: [PATCH] Fix a python file --- slide_generation/fetch_issues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slide_generation/fetch_issues.py b/slide_generation/fetch_issues.py index 31ba800..c6f4c04 100644 --- a/slide_generation/fetch_issues.py +++ b/slide_generation/fetch_issues.py @@ -64,7 +64,7 @@ def main(): if md is not None: markdown_contents.append(md) # Geerate the final output file - with open(WORKSPACE + f"slides/{LABEL}.md", "w") as f: + with open(OUTPUT_PATH, "w") as f: f.write(MARP_PREFIX) for md in markdown_contents: f.write(md)