Skip to content

Commit

Permalink
Add trailing comma to make jenkins happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmassmann committed Jan 3, 2018
1 parent d821b16 commit d7361be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plone/recipe/codeanalysis/i18ndude.py
Expand Up @@ -26,7 +26,7 @@ def cmd(self):
def nosummary(self):
"""The report will contain only the errors for each file."""
return I18NDude.normalize_boolean(
self.get_prefixed_option('no-summary')
self.get_prefixed_option('no-summary'),
)


Expand Down

1 comment on commit d7361be

@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.

@tmassman Jenkins CI reporting about code analysis
See the full report here: http://jenkins.plone.org/job/package-plone.recipe.codeanalysis/45/violations

plone/recipe/codeanalysis/__init__.py:147:57: C815 missing trailing comma in Python 3.5+
plone/recipe/codeanalysis/__init__.py:182:61: C813 missing trailing comma in Python 3

Follow these instructions to reproduce it locally.

Please sign in to comment.