diff options
author | Georg Brandl <georg@python.org> | 2010-06-12 12:30:40 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-06-12 12:30:40 +0200 |
commit | d30d286486562a51720e84e3528dfcfbef70ec26 (patch) | |
tree | 68d6b9871dc14c13c3d2a9832fd8139f7b2e54e4 /sphinx/util/docfields.py | |
parent | 9b27aa3ae8871cbfa6cb2aad006cc2c36d188cbf (diff) | |
download | sphinx-git-d30d286486562a51720e84e3528dfcfbef70ec26.tar.gz |
Fix transformation of Field.
Diffstat (limited to 'sphinx/util/docfields.py')
-rw-r--r-- | sphinx/util/docfields.py | 2 |
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) |