diff --git a/Source/Scraper.py b/Source/Scraper.py index a4a9807..d52b0c5 100644 --- a/Source/Scraper.py +++ b/Source/Scraper.py @@ -300,7 +300,7 @@ def scrape_api(a_path): for file in files: if file.startswith("class_") and file.endswith(".html") and not file.endswith("-members.html"): classes_to_process.append(file) - elif file == "namespace_isaac.html": + elif file.startswith("namespace_") and file.endswith(".html"): namespaces_to_process.append(file) elif file == "group__enums.html": enums = parse_enums(os.path.join(a_path, file))