# HG changeset patch # User Thierry Florac # Date 1537370334 -7200 # Node ID ca1064e94ad2dc6351d4a545c5776232ea4dc1b1 # Parent fff75670961792567748623ef2229c60004d5c3b Error in boolean test ! diff -r fff756709617 -r ca1064e94ad2 src/pyams_content/component/paragraph/container.py --- a/src/pyams_content/component/paragraph/container.py Wed Sep 19 16:00:08 2018 +0200 +++ b/src/pyams_content/component/paragraph/container.py Wed Sep 19 17:18:54 2018 +0200 @@ -47,7 +47,7 @@ yield paragraph else: for paragraph in self.values(): - if IBroken.providedBy(paragraph) or not not paragraph.visible: + if IBroken.providedBy(paragraph) or not paragraph.visible: continue if anchors_only and not paragraph.anchor: continue