Skip to content

Commit 90ebd73

Browse files
committed
ensure titles have the correct keys
1 parent c2115db commit 90ebd73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/reports/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def index(self, config):
312312
for c in list_combos:
313313
# do not display entities with the value None.
314314
c_filt = list(filter(None, c))
315-
ent_filt = list(compress(entities, c_filt))
315+
ent_filt = list(compress(entities, c))
316316
# Set a common title for this particular combination c
317317
title = 'Reports for: %s.' % ', '.join(
318318
['%s <span class="bids-entity">%s</span>' % (ent_filt[i], c_filt[i])

0 commit comments

Comments
 (0)