Skip to content

Commit 08a49b0

Browse files
author
Shane Snyder
committed
more tweaks to make sure warnings are printed
1 parent 9c7276a commit 08a49b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

darshan-util/pydarshan/darshan/cli/summary.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -640,11 +640,11 @@ def build_sections(self):
640640
"""
641641
self.sections = {}
642642
for fig in self.figures:
643-
# skip empty figures
644-
if fig.fig_html == None and fig.section_title != "I/O Summary":
645-
# skip empty report sections, except for heatmap data in the
646-
# "I/O Summary" section, as these plots contain an important
647-
# warning message on how to generate heatmap plots
643+
# skip empty figures that can be generated by report sections
644+
# "Data Access by Category" and "Cross-Module Comparisons"
645+
if (fig.fig_html == None and
646+
(fig.section_title == "Data Access by Category" or
647+
fig.section_title == "Cross-Module Comparisons")):
648648
continue
649649
# if a section title is not already in sections, add
650650
# the section title and a corresponding empty list

0 commit comments

Comments
 (0)