Fix node class name.

This commit is contained in:
Georg Brandl
2009-03-09 09:47:10 +01:00
parent e6aa389718
commit d117ef45a3

View File

@@ -289,7 +289,7 @@ emitted at the end of phase 3 and allows custom resolving to be done::
def process_todo_nodes(app, doctree, fromdocname):
if not app.config.todo_include_todos:
for node in doctree.traverse(todo_node):
for node in doctree.traverse(todo):
node.parent.remove(node)
# Replace all todolist nodes with a list of the collected todos.