BUG: Fix rebuild regression

This commit is contained in:
Eric Larson 2021-03-03 16:28:33 -05:00
parent cba9ed0bb5
commit 17599133f7

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: