From 5a970dca91e4d204d38611d59ce70dcf842d1a5d Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Sat, 24 Jul 2021 15:07:11 +0200 Subject: [PATCH] [plotter] correct a log message --- plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotter.py b/plotter.py index 4948b6b..76d6986 100644 --- a/plotter.py +++ b/plotter.py @@ -1184,7 +1184,7 @@ class Plotter(Aggregator, BaseProcessor): y = ytransform(y) if yerr is not None: self._log( - "Errorbar may be meaning less when ytransform is used", "WARNING" + "Errorbar may be meaningless when ytransform is used", "WARNING" ) if smooth > 0: y = gaussian_filter1d(y, sigma=smooth)