Skip to content

Commit

Permalink
Recommend correct replacement names for deprecated APIs (#11655)
Browse files Browse the repository at this point in the history
  • Loading branch information
kartben committed Aug 29, 2023
1 parent 123690a commit e494baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sphinx/util/__init__.py
Expand Up @@ -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,
Expand Down

0 comments on commit e494baa

Please sign in to comment.