fixed @//// in wiki and pep8 spacing

This commit is contained in:
mdipierro
2012-08-25 11:29:11 -05:00
parent 0a95246cb0
commit dcce7fc39a
110 changed files with 181 additions and 72 deletions
+2 -1
View File
@@ -239,7 +239,7 @@ class ListWidget(StringWidget):
else: _class = 'string'
requires = field.requires if isinstance(field.requires, (IS_NOT_EMPTY, IS_LIST_OF)) else None
attributes['_style'] = 'list-style:none'
items=[LI(INPUT(_id=_id, _class=_class, _name=_name,
items=[LI(INPUT(_id=_id, _class=_class, _name=_name,
value=v, hideerror=True, requires=requires),
**attributes) for v in value or ['']]
script=SCRIPT("""
@@ -2669,3 +2669,4 @@ class ExporterXML(ExportClass):