Update single-page.py

This commit is contained in:
progamerz-dev 2023-06-03 22:19:14 +03:00 committed by GitHub
parent 280b048856
commit 150a055f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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