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
+7 -1
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: