diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-04-05 01:09:38 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-04-05 01:09:38 +0900 |
commit | ead1505919a7f889e97b511a4e4fa7838bbc47b6 (patch) | |
tree | 60219b602e32117e1e835d2fd874d0cece14f353 /sphinx/deprecation.py | |
parent | d34302a41514f82075dea8d1e6b1088f6e57768a (diff) | |
download | sphinx-git-ead1505919a7f889e97b511a4e4fa7838bbc47b6.tar.gz |
Fix RemovedInSphinx30Warning is marked as pending
Diffstat (limited to 'sphinx/deprecation.py')
-rw-r--r-- | sphinx/deprecation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 6cdd22ec1..40db9a257 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -17,7 +17,7 @@ if False: from typing import Any, Dict, Type # NOQA -class RemovedInSphinx30Warning(PendingDeprecationWarning): +class RemovedInSphinx30Warning(DeprecationWarning): pass |