We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6139dec commit a4aef23Copy full SHA for a4aef23
darshan-util/pydarshan/darshan/cli/summary.py
@@ -641,7 +641,10 @@ def build_sections(self):
641
self.sections = {}
642
for fig in self.figures:
643
# skip empty figures
644
- if fig.fig_html == None:
+ 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
648
continue
649
# if a section title is not already in sections, add
650
# the section title and a corresponding empty list
0 commit comments