diff --git a/.github/single-page.py b/.github/single-page.py index a8240b226..14af6955c 100644 --- a/.github/single-page.py +++ b/.github/single-page.py @@ -7,7 +7,7 @@ def output(): read = glob.glob("*.md") content = "" for file in read: - if file != "single-page.md" and file != "README.md": + if file != "README.md": with open(file, "r") as f: content += f.read() return content