From 4ad6eef1a3254705253aaa81a45fb7a4d00a1c06 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 4 Jul 2024 15:07:48 -0300 Subject: [PATCH] Added a call to the `dump()` function in the `get_package_files()` function. --- aider/help.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/help.py b/aider/help.py index c87d7694a..7f1a7a1e3 100755 --- a/aider/help.py +++ b/aider/help.py @@ -17,6 +17,7 @@ def get_package_files(): website_files = importlib_resources.files('website') for path in website_files.rglob('*.md'): if not any(part.startswith(('OLD', 'tmp')) or part in ('examples', '_posts') for part in path.parts): + dump(path) yield str(path)