diff options
Diffstat (limited to 'doc/development/tutorials/examples/todo.py')
-rw-r--r-- | doc/development/tutorials/examples/todo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index 59e394ee8..61eaac388 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -93,7 +93,7 @@ def process_todo_nodes(app, doctree, fromdocname): description = ( _('(The original entry is located in %s, line %d and can be found ') % (filename, todo_info['lineno'])) - para += nodes.Text(description, description) + para += nodes.Text(description) # Create a reference newnode = nodes.reference('', '') @@ -104,7 +104,7 @@ def process_todo_nodes(app, doctree, fromdocname): newnode['refuri'] += '#' + todo_info['target']['refid'] newnode.append(innernode) para += newnode - para += nodes.Text('.)', '.)') + para += nodes.Text('.)') # Insert into the todolist content.append(todo_info['todo']) |