Small code style fix.

This commit is contained in:
Georg Brandl 2013-09-16 09:21:31 +02:00
parent 1a99c74e4b
commit cbaad505a7

View File

@ -221,7 +221,7 @@ class DocFieldTransformer(object):
# match the spec; capitalize field name and be done with it
new_fieldname = fieldtype[0:1].upper() + fieldtype[1:]
if fieldarg:
new_fieldname = new_fieldname + ' ' + fieldarg
new_fieldname += ' ' + fieldarg
fieldname[0] = nodes.Text(new_fieldname)
entries.append(field)
continue