From 76760011ff03706bb1ed65e10003c31214866086 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Sat, 7 Mar 2015 09:14:05 +0200 Subject: [PATCH] Don't crash when building documentation man pages Fixes #207. --- doc/ext/refcounting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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))