Commit 49ef191d authored by Jérome Perrin's avatar Jérome Perrin

administration: do not pass empty list to catalog

to prevent a warning

Also reindent long too long line
parent e559ecd5
...@@ -13,8 +13,16 @@ portal = context.getPortalObject() ...@@ -13,8 +13,16 @@ portal = context.getPortalObject()
if query_string is not None: if query_string is not None:
kw.update(SearchableText=query_string) kw.update(SearchableText=query_string)
kw.update(parent_uid=[portal.restrictedTraverse(module).getUid() for module in context.getProperty('module_list') or []]) parent_uid =[portal.restrictedTraverse(module).getUid()
for module in context.getProperty('module_list') or []]
if parent_uid:
kw.update(parent_uid=parent_uid)
portal.portal_catalog.searchAndActivate(method_id='Base_checkAlarmConsistency', method_kw={'fixit': fixit, 'active_process': active_process}, activate_kw={'tag':tag, 'priority': 8}, **kw)
portal.portal_catalog.searchAndActivate(
method_id='Base_checkAlarmConsistency',
method_kw={'fixit': fixit, 'active_process': active_process},
activate_kw={'tag':tag, 'priority': 8},
**kw)
context.activate(after_tag=tag).getId() context.activate(after_tag=tag).getId()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment