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
commitd30d286486562a51720e84e3528dfcfbef70ec26 (patch)
tree68d6b9871dc14c13c3d2a9832fd8139f7b2e54e4 /sphinx/util/docfields.py
parent9b27aa3ae8871cbfa6cb2aad006cc2c36d188cbf (diff)
downloadsphinx-git-d30d286486562a51720e84e3528dfcfbef70ec26.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 da93c6fea..c975b9b50 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)