summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-04-23 22:21:04 -0700
committerSteve Piercy <web@stevepiercy.com>2020-04-23 22:21:04 -0700
commit27290fd297d0bcf8ed1c82e4a21df82af494ba97 (patch)
tree6389840a8be0937b40bf28bad2d3d349fc1b09fe /docs/conf.py
parent48cf45b0a1ac04e701101fa18778164825edd429 (diff)
downloadpyramid-27290fd297d0bcf8ed1c82e4a21df82af494ba97.tar.gz
pyramid-27290fd297d0bcf8ed1c82e4a21df82af494ba97.tar.bz2
pyramid-27290fd297d0bcf8ed1c82e4a21df82af494ba97.zip
Sphinx 3.0 removed deprecated extra args in add_directive()
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 472485380..613f38dca 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -379,9 +379,9 @@ def app_role(role, rawtext, text, lineno, inliner, options={}, content=[]):
def setup(app):
app.add_role('app', app_role)
- app.add_directive('frontmatter', FrontMatter, 1, (0, 0, 0))
- app.add_directive('mainmatter', MainMatter, 1, (0, 0, 0))
- app.add_directive('backmatter', BackMatter, 1, (0, 0, 0))
+ app.add_directive('frontmatter', FrontMatter)
+ app.add_directive('mainmatter', MainMatter)
+ app.add_directive('backmatter', BackMatter)
app.connect('autodoc-process-signature', resig)