Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed May 17, 2018
1 parent 4e68ee7 commit 8ea0418
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ New features:

Bug fixes:

- Cleanup code analysis problems.
[jensens]

- Fix SingleCheckBoxBoolWidget description to render structure
[allusa]

Expand Down
2 changes: 1 addition & 1 deletion plone/app/z3cform/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_suite():
package='plone.app.z3cform',
optionflags=(
doctest.ELLIPSIS |
doctest.NORMALIZE_WHITESPACE,
doctest.NORMALIZE_WHITESPACE
),
), layer=PAZ3CForm_INTEGRATION_TESTING)

Expand Down
2 changes: 1 addition & 1 deletion plone/app/z3cform/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def render(self):
mt_select.attrib['name'] = '{0}.mimeType'.format(self.name)
mt_select.attrib['class'] = mt_pattern_name
mt_select.attrib[
'data-{0}'.format(mt_pattern_name),
'data-{0}'.format(mt_pattern_name)
] = json.dumps(
{
'textareaName': self.name,
Expand Down

1 comment on commit 8ea0418

@jenkins-plone-org
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jensens Jenkins CI reporting about code analysis
See the full report here: https://jenkins.plone.org/job/package-plone.app.z3cform/103/violations

plone/app/z3cform/inline_validation.py:15:5: C901 'InlineValidationView.__call__' is too complex (15)
plone/app/z3cform/widget.py:660:19: T000 Todo note found.
plone/app/z3cform/widget.py:674:47: T000 Todo note found.
plone/app/z3cform/converters.py:106:11: T000 Todo note found.

Follow these instructions to reproduce it locally.

Please sign in to comment.