From 00ea93d05116312edea40d2678480df32b270e94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Tue, 29 Aug 2023 17:54:29 +0200 Subject: [PATCH] fix typos in sphinx.util._DEPRECATED_OBJECTS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some typos are causing erroneous suggestions when using deprecated APIs. Signed-off-by: Benjamin Cabé --- sphinx/util/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 9970614dab3..69b2848ae5b 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -270,8 +270,8 @@ def _xml_name_checker(): 'status_iterator': (_display.status_iterator, 'sphinx.util.display.status_iterator'), 'SkipProgressMessage': (_display.SkipProgressMessage, 'sphinx.util.display.SkipProgressMessage'), - 'progress_message': (_display.progress_message, 'sphinx.http_date.epoch_to_rfc1123'), - 'epoch_to_rfc1123': (_http_date.epoch_to_rfc1123, 'sphinx.http_date.rfc1123_to_epoch'), + 'progress_message': (_display.progress_message, 'sphinx.util.display.progress_message'), + 'epoch_to_rfc1123': (_http_date.epoch_to_rfc1123, 'sphinx.http_date.epoch_to_rfc1123'), 'rfc1123_to_epoch': (_http_date.rfc1123_to_epoch, 'sphinx.http_date.rfc1123_to_epoch'), 'save_traceback': (_exceptions.save_traceback, 'sphinx.exceptions.save_traceback'), 'format_exception_cut_frames': (_exceptions.format_exception_cut_frames,