aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2015-03-07 09:14:05 +0200
committerPetri Lehtinen <petri@digip.org>2015-03-07 09:14:06 +0200
commit76760011ff03706bb1ed65e10003c31214866086 (patch)
treefdd411cea3254eeb537a56fdf7e41f547e7d7de0 /doc
parent11813f4128bf603de8d261a158ebea2789ddea04 (diff)
downloadjansson-76760011ff03706bb1ed65e10003c31214866086.zip
jansson-76760011ff03706bb1ed65e10003c31214866086.tar.gz
jansson-76760011ff03706bb1ed65e10003c31214866086.tar.bz2
Don't crash when building documentation man pages
Fixes #207.
Diffstat (limited to 'doc')
-rw-r--r--doc/ext/refcounting.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ext/refcounting.py b/doc/ext/refcounting.py
index b714c88..117efc0 100644
--- a/doc/ext/refcounting.py
+++ b/doc/ext/refcounting.py
@@ -55,5 +55,6 @@ def setup(app):
app.add_node(refcounting,
html=(html_visit, html_depart),
latex=(visit, depart),
- text=(visit, depart))
+ text=(visit, depart),
+ man=(visit, depart))
app.add_directive('refcounting', refcounting_directive, 0, (1, 0, 0))