summaryrefslogtreecommitdiff
path: root/sphinx/util/docfields.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-06-12 12:30:40 +0200
committerGeorg Brandl <georg@python.org>2010-06-12 12:30:40 +0200
commit0df0fe40f06938043592d842d2fd9ffe4d14250e (patch)
tree68d6b9871dc14c13c3d2a9832fd8139f7b2e54e4 /sphinx/util/docfields.py
parent0f8375775da19a5b908047c562ab8d9b270de4cc (diff)
downloadsphinx-0df0fe40f06938043592d842d2fd9ffe4d14250e.tar.gz
Fix transformation of Field.
Diffstat (limited to 'sphinx/util/docfields.py')
-rw-r--r--sphinx/util/docfields.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py
index da93c6fe..c975b9b5 100644
--- a/sphinx/util/docfields.py
+++ b/sphinx/util/docfields.py
@@ -67,7 +67,7 @@ class Field(object):
fieldname += nodes.Text(' ')
fieldname += self.make_xref(self.rolename, domain,
fieldarg, nodes.Text)
- fieldbody = nodes.field_body('', nodes.paragraph('', *content))
+ fieldbody = nodes.field_body('', nodes.paragraph('', '', *content))
return nodes.field('', fieldname, fieldbody)