Don't crash when building documentation man pages

Fixes #207.
This commit is contained in:
Petri Lehtinen 2015-03-07 09:14:05 +02:00
parent 11813f4128
commit 76760011ff

View File

@ -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))