Skip to content

Commit a4aef23

Browse files
author
Shane Snyder
committed
keep helpful heatmap warning messages
1 parent 6139dec commit a4aef23

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,10 @@ def build_sections(self):
641641
self.sections = {}
642642
for fig in self.figures:
643643
# skip empty figures
644-
if fig.fig_html == None:
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
645648
continue
646649
# if a section title is not already in sections, add
647650
# the section title and a corresponding empty list

0 commit comments

Comments
 (0)