We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8f5698 commit 60b0dc5Copy full SHA for 60b0dc5
src/sphinxcontrib/autofile/directive.py
@@ -54,7 +54,7 @@ def run(self) -> list[Node]:
54
items = []
55
for expr in self.content.data:
56
expr = os.path.abspath(os.path.join(os.path.dirname(path), expr))
57
- for abspath in glob(expr):
+ for abspath in glob(expr, recursive=True):
58
_, _, module_path = abspath.rpartition("/" + prefix + "/")
59
module_name = (
60
module_path.replace("/__init__.py", "")
0 commit comments