mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix error in 'sphinx-last-updated-by-git'
This commit is contained in:
parent
d95dafa130
commit
c68f846edc
@ -131,7 +131,7 @@ class BuildEnvironment:
|
||||
self.all_docs: dict[str, int] = {}
|
||||
# docname -> set of dependent file
|
||||
# names, relative to documentation root
|
||||
self.dependencies: dict[str, set[_StrPath]] = {}
|
||||
self.dependencies: dict[str, set[_StrPath]] = defaultdict(set)
|
||||
# docname -> set of included file
|
||||
# docnames included from other documents
|
||||
self.included: dict[str, set[str]] = defaultdict(set)
|
||||
|
Loading…
Reference in New Issue
Block a user