diff --git a/CHANGES b/CHANGES index 3f0f9a0e17e..1f897480d73 100644 --- a/CHANGES +++ b/CHANGES @@ -42,6 +42,7 @@ Bugs fixed variables/structure members * #10175: LaTeX: named footnote reference is linked to an incorrect footnote if the name is also used in the different document +* #10269: manpage: Failed to resolve the title of :ref: cross references * #10179: i18n: suppress "rST localization" warning * #10181: napoleon: attributes are displayed like class attributes for google style docstrings when :confval:`napoleon_use_ivar` is enabled diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py index 43637b65a6d..527e31bc1f0 100644 --- a/sphinx/builders/manpage.py +++ b/sphinx/builders/manpage.py @@ -41,9 +41,7 @@ def get_outdated_docs(self) -> Union[str, List[str]]: return 'all manpages' # for now def get_target_uri(self, docname: str, typ: str = None) -> str: - if typ == 'token': - return '' - raise NoUri(docname, typ) + return '' @progress_message(__('writing')) def write(self, *ignored: Any) -> None: