Merge pull request #8955 from larsoner/fix-rebuild

BUG: Fix rebuild regression
This commit is contained in:
Takeshi KOMIYA 2021-03-04 21:51:28 +09:00 committed by GitHub
commit 58c0855a29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1248,7 +1248,13 @@ def validate_html_favicon(app: Sphinx, config: Config) -> None:
config.html_favicon = None # type: ignore
UNSET = object()
class _stable_repr_object():
def __repr__(self):
return '<object>'
UNSET = _stable_repr_object()
def migrate_html_add_permalinks(app: Sphinx, config: Config) -> None: