diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-17 22:06:53 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-17 22:26:29 +0900 |
commit | f3350b8b7d709aada5803865c444b3ba4ccc1bd5 (patch) | |
tree | b692e1a5368dac5590a268d70556af0bbfe65d24 /sphinx/io.py | |
parent | 636ca67528212772db62771c41d1d76fb3af820e (diff) | |
download | sphinx-git-f3350b8b7d709aada5803865c444b3ba4ccc1bd5.tar.gz |
Deprecate SphinxFileInput.supported
Diffstat (limited to 'sphinx/io.py')
-rw-r--r-- | sphinx/io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/io.py b/sphinx/io.py index fb3664c89..ee4891a2b 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -198,7 +198,7 @@ class SphinxBaseFileInput(FileInput): class SphinxFileInput(FileInput): """A basic FileInput for Sphinx.""" - supported = ('*',) # special source input + supported = ('*',) # RemovedInSphinx30Warning def __init__(self, *args, **kwargs): # type: (Any, Any) -> None |