summaryrefslogtreecommitdiff
path: root/sphinx/writers/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/writers/text.py')
-rw-r--r--sphinx/writers/text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py
index 4718d41d3..787e70207 100644
--- a/sphinx/writers/text.py
+++ b/sphinx/writers/text.py
@@ -419,7 +419,8 @@ class TextTranslator(nodes.NodeVisitor):
def visit_acks(self, node):
self.new_state(0)
- self.add_text(', '.join(n.astext() for n in node.children[0].children) + '.')
+ self.add_text(', '.join(n.astext() for n in node.children[0].children)
+ + '.')
self.end_state()
raise nodes.SkipNode