commit 487befd75faf809e725a638543cd74465f0a10b6
parent f1d41a0c7e30c0be846a6d2f24bcdaf2a861e02e
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Fri, 10 Oct 2025 20:43:59 +0530
update py
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/generate_index.py b/docs/generate_index.py
@@ -2,8 +2,8 @@ import os
# --- Configuration ---
REPO_URL = "https://github.com/notamitgamer/bsc"
-EXCLUDED_DIRS = ['.git', '.github', 'MinGW64', 'print']
-EXCLUDED_FILES = ['generate_index.py', 'template.html', 'index.html', 'README.md', 'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md',
+EXCLUDED_DIRS = ['.git', '.github', 'MinGW64', 'print', 'docs']
+EXCLUDED_FILES = ['index.html', 'README.md', 'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md',
'LICENSE', 'main.js', 'package.json', 'SECURITY.md', 'server.js']
# --- End Configuration ---
@@ -45,7 +45,7 @@ def generate_file_list():
def main():
"""Main function to generate the index.html file."""
- with open('template.html', 'r') as f:
+ with open('index.html', 'r') as f:
template = f.read()
file_list_html = generate_file_list()