Fix some easy pep8 issues
This commit is contained in:
parent
6547486fd8
commit
d2bba1d5ea
@ -20,6 +20,9 @@ Bug fixes:
|
||||
- Improve English on a couple of field descriptions
|
||||
[djowett]
|
||||
|
||||
- Fix some easy pep8 issues
|
||||
[djowett]
|
||||
|
||||
|
||||
2.4.19 (2017-01-02)
|
||||
-------------------
|
||||
|
@ -65,3 +65,5 @@ class CaptchaExtender(extensible.FormExtender):
|
||||
self.form.fields['captcha'].widgetFactory = NorobotsFieldWidget
|
||||
else:
|
||||
self.form.fields['captcha'].mode = interfaces.HIDDEN_MODE
|
||||
|
||||
|
||||
|
@ -125,7 +125,8 @@ class DiscussionSettingsControlPanel(controlpanel.ControlPanelFormWrapper):
|
||||
output.append('globally_enabled')
|
||||
|
||||
# Comment moderation
|
||||
one_state_worklow_disabled = 'comment_one_state_workflow' not in workflow_chain
|
||||
one_state_worklow_disabled = \
|
||||
'comment_one_state_workflow' not in workflow_chain
|
||||
comment_review_workflow_disabled = \
|
||||
'comment_review_workflow' not in workflow_chain
|
||||
if one_state_worklow_disabled and comment_review_workflow_disabled:
|
||||
@ -174,7 +175,8 @@ class DiscussionSettingsControlPanel(controlpanel.ControlPanelFormWrapper):
|
||||
"""
|
||||
wftool = getToolByName(self.context, 'portal_workflow', None)
|
||||
workflow_chain = wftool.getChainForPortalType('Discussion Item')
|
||||
one_state_workflow_enabled = 'comment_one_state_workflow' in workflow_chain
|
||||
one_state_workflow_enabled = \
|
||||
'comment_one_state_workflow' in workflow_chain
|
||||
comment_review_workflow_enabled = \
|
||||
'comment_review_workflow' in workflow_chain
|
||||
if one_state_workflow_enabled or comment_review_workflow_enabled:
|
||||
|
@ -207,6 +207,7 @@ class Comment(CatalogAware, WorkflowAware, DynamicType, Traversable,
|
||||
def opaqueValues(self): # pragma: no cover
|
||||
return []
|
||||
|
||||
|
||||
CommentFactory = Factory(Comment)
|
||||
|
||||
|
||||
|
@ -163,7 +163,8 @@ class ConfigurationChangedSubscriberTest(unittest.TestCase):
|
||||
the 'comment_moderation' setting in the discussion control panel
|
||||
changes.
|
||||
"""
|
||||
# By default the comment_one_state_workflow without moderation is enabled
|
||||
# By default the comment_one_state_workflow without moderation is
|
||||
# enabled
|
||||
self.assertEqual(
|
||||
('comment_one_state_workflow',),
|
||||
self.portal.portal_workflow.getChainForPortalType(
|
||||
|
Loading…
Reference in New Issue
Block a user