summaryrefslogtreecommitdiff
path: root/sphinx/writers/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/writers/text.py')
-rw-r--r--sphinx/writers/text.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py
index da58906e7..21d41bea3 100644
--- a/sphinx/writers/text.py
+++ b/sphinx/writers/text.py
@@ -20,6 +20,7 @@ from docutils import nodes, writers
from docutils.utils import column_width
from sphinx import addnodes
+from sphinx.deprecation import RemovedInSphinx16Warning
from sphinx.locale import admonitionlabels, _
if False:
@@ -772,8 +773,10 @@ class TextTranslator(nodes.NodeVisitor):
def visit_termsep(self, node):
# type: (nodes.Node) -> None
- warnings.warn('sphinx.addnodes.termsep will be removed at Sphinx-1.5',
- DeprecationWarning)
+ warnings.warn('sphinx.addnodes.termsep will be removed at Sphinx-1.6. '
+ 'This warning is displayed because some Sphinx extension '
+ 'uses sphinx.addnodes.termsep. Please report it to '
+ 'author of the extension.', RemovedInSphinx16Warning)
self.add_text(', ')
raise nodes.SkipNode