From 150a055f5eab0406ee1229a9dd5074fc6f86cd27 Mon Sep 17 00:00:00 2001 From: progamerz-dev <110605605+progamerz-dev@users.noreply.github.com> Date: Sat, 3 Jun 2023 22:19:14 +0300 Subject: [PATCH] Update single-page.py --- .github/single-page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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