From 449ef8b62335e8a31767d490d04ce352c58860d0 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins <jameson.rollins@ligo.org> Date: Tue, 20 Oct 2020 07:42:31 -0700 Subject: [PATCH] plot: use trace name if label not specified in style attribute fixes bug where overall budget name was used instead. --- gwinc/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gwinc/plot.py b/gwinc/plot.py index 1753108d..884dbd57 100644 --- a/gwinc/plot.py +++ b/gwinc/plot.py @@ -34,7 +34,7 @@ def plot_budget( for name, trace in budget.items(): style = trace.style if 'label' not in style: - style['label'] = budget.name + style['label'] = name if 'linewidth' in style: style['lw'] = style['linewidth'] elif 'lw' not in style: -- GitLab